Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
yieldFrom_03.php
blob: 0a250def4287c5df304a9a9ef4ad18aaa9f2989d [
file
]
<?
php
function
gg
()
{
yield
1
;
yield
from
new
ArrayIterator
([
2
,
3
,
4
]);
yield
5
;
}