<?php $function = function () { yield 0; }; $wrapper = function () use ($function) { $generator = $function(); $generator->valid(); yield from $generator; $generator = $function(); // Comment out this line to get the correct result. $generator->valid(); yield from $generator; }; foreach ($wrapper() as $value) { echo $value; }
You have javascript disabled. You will not be able to edit any code.