<?php function foo() { yield 1; yield 2; yield 3; return ['a', 'b', 'c']; } function foo2() { return ['a', 'b', 'c']; } function goo($x, $y, $z) { print "$x $y $z\n"; } goo(...foo()); goo(...foo2());
You have javascript disabled. You will not be able to edit any code.