<?php function foo() { yield 1; yield 2; yield 3; return ' 4'; } function goo($a, $b, $c) { print "$a $b $c"; } print PHP_EOL; goo(...foo()); goo(...($g = foo())); echo $g->getReturn(); ?>
You have javascript disabled. You will not be able to edit any code.