<?php function foo() { yield from [ ['a'] ]; yield from [ ['b'] ]; } foreach (foo() as $x) { var_dump($x); }
You have javascript disabled. You will not be able to edit any code.