{}
run-icon
main.php
<?php function fibonacci(): Generator { $a = 0; $b = 1; while (true) { yield $a; [$a, $b] = [$b, $a + $b]; } } $gen = fibonacci(); do { echo $gen->current() . " "; } while ($gen->send(null) < 100);
Output