Source Code:
(back to article)
<?php function myGenerator() { yield "Hello"; yield "World"; } function myOtherGenerator() { yield "!"; } function myCombinedGenerator() { yield from myGenerator(); yield from myOtherGenerator(); } foreach (myCombinedGenerator() as $value) { echo $value . " "; }
Result:
Report an issue