<?php function a() { yield 0 => 'first'; yield 0 => 'second'; } function b() { yield 0 => 'first'; yield '0' => 'second'; } function c() { yield '0' => 'first'; yield '0' => 'second'; } function test(...$args) { var_dump($args); } test(...a()); echo "\n"; test(...b()); echo "\n"; test(...c());
You have javascript disabled. You will not be able to edit any code.