mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
|
--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"
|