3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Create an iterator to be limited $fruits = new ArrayIterator(array( 'apple', 'banana', 'cherry', 'damson', 'elderberry' )); // Loop over first three fruits only foreach (new LimitIterator($fruits, 0, 3) as $fruit) { var_dump($fruit); }

preferences:
36.72 ms | 402 KiB | 5 Q