3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gen() { foreach(['first value', 'second value', 'third value'] as $val) { yield $val; } } list($first, $second, $third) = iterator_to_array(gen()); var_dump($first, $second, $third);

preferences:
33.98 ms | 405 KiB | 5 Q