php-src/ext/spl/tests/bug71153.phpt
2015-12-17 20:59:57 +01:00

17 lines
223 B
PHP

--TEST--
Bug #71153: Performance Degradation in ArrayIterator with large arrays
--FILE--
<?php
$n = 200000;
for ($i = 0; $i < $n; ++$i) {
foreach (new ArrayIterator([]) as $v) {}
}
echo "done\n";
?>
--EXPECT--
done