blob: 17e901f0c131a95a397efde7d6c081e6683d33bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
SPL: EmptyIterator
--FILE--
<?php
echo "===EmptyIterator===\n";
foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
{
echo "$key=>$val\n";
}
?>
--EXPECT--
===EmptyIterator===
|