php-src/ext/spl/tests/bug49723.phpt
2010-04-27 04:57:48 +00:00

17 lines
214 B
PHP

--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===