Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
yield_07.php
blob: 77dfa55a2ee1f1244d7654cdd6c0af30e0344c9c [
file
]
<?
php
function
generatorNull
()
{
for
(
$i
=
1
;
$i
<=
3
;
$i
++)
{
yield
;
}
}
?>