1 2 3 4 5 6 7 8
--TEST-- count(new EmptyIterator) should return zero --FILE-- <?php $it = new EmptyIterator; var_dump(count($it)); --EXPECT-- int(0)