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: 10 September 2026
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
<?php
function test() {
yield from [1, 2, 3];
yield 4;
}
var_dump(iterator_to_array(test()));
Guess the output.
Last updated: 10 September 2026