Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
yieldFrom_04.php
blob: 6b505d72a05d7bf4356cae66c7432998eddccbcc [
file
]
<?
php
function
g22
()
{
yield
1
;
$g1result
=
yield
from
g11
();
yield
4
;
return
$g1result
;
}