php-src/ext/spl/tests/bug49723.phpt

17 lines
214 B
Plaintext
Raw Normal View History

--TEST--
LimitIterator: do not seek if not needed
--FILE--
<?php
$it = new ArrayIterator(array());
$lit = new LimitIterator($it, 0, 5);
foreach ($lit as $v) {
echo $v;
}
?>
===DONE===
--EXPECT--
===DONE===