Yield And Keys¶
<?php
function test() {
yield from [1, 2, 3];
yield 4;
}
var_dump(iterator_to_array(test()));
Guess the output.
See Also¶
Guess the output [Try me]
PHP Features¶
Last updated: 14 July 2026
<?php
function test() {
yield from [1, 2, 3];
yield 4;
}
var_dump(iterator_to_array(test()));
Guess the output.
Guess the output [Try me]
Last updated: 14 July 2026