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: 14 July 2026