3v4l.org

run code in 300+ PHP versions simultaneously
<?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());

preferences:
28.1 ms | 404 KiB | 5 Q