mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
13 lines
213 B
PHP
13 lines
213 B
PHP
--TEST--
|
|
Bug #46053 (SplFileObject::seek - Endless loop)
|
|
--FILE--
|
|
<?php
|
|
|
|
$x = new splfileobject(__FILE__);
|
|
$x->getPathName();
|
|
$x->seek(10);
|
|
$x->seek(0);
|
|
var_dump(trim($x->fgets()));
|
|
--EXPECTF--
|
|
string(%d) "<?php"
|