mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
16 lines
193 B
PHP
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"
|