3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gen($a) { yield $a; yield $a + 1; } function yf() { yield from gen(1); yield from gen(10); } $g = yf(); var_dump($g->current());

preferences:
59.34 ms | 402 KiB | 5 Q