PHP VERSION: 8.2.18

abstract_syntax_tree_yield.php

<?php
// example of the effect of the abstract syntax tree rework

function test()
{
    return 
rand(099);
}

$result = (yield test());
var_dump($result);

$result = yield test();
var_dump($result);

Output