php-src/Zend/tests/generators/yield_during_function_call.phpt
2020-02-03 22:52:20 +01:00

16 lines
193 B
PHP

--TEST--
"yield" can occur during a function call
--FILE--
<?php
function gen() {
var_dump(str_repeat("x", yield));
}
$gen = gen();
$gen->send(10);
?>
--EXPECT--
string(10) "xxxxxxxxxx"