Keyboard shortcuts

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

Yield And Keys

By Jerome Tamarelle

<?php

function test() {
    yield from [1, 2, 3];
    yield 4;
}

var_dump(iterator_to_array(test()));

Guess the output.

See Also

PHP Features

Last updated: 10 September 2026