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