Generator::send

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

Generator::send向生成器中傳入一個值

說明

public Generator::send(mixed $value): mixed

向生成器中傳入一個值,并且當做 yield 表達式的結果,然后繼續(xù)執(zhí)行生成器。

如果當這個方法被調用時,生成器不在 yield 表達式,那么在傳入值之前,它會先運行到第一個 yield 表達式。 因此沒有必要調用 Generator::next() 讓 PHP 生成器 “準備”(就像是 Python 那樣做)。

參數(shù)

value

傳入生成器的值。這個值將會被作為生成器當前所在的 yield 的返回值

返回值

返回生成的值。

范例

示例 #1 用 Generator::send() 向生成器函數(shù)中傳值

<?php
function printer() {
    echo 
"I'm printer!".PHP_EOL;
    while (
true) {
        
$string = yield;
        echo 
$string.PHP_EOL;
    }
}

$printer printer();
$printer->send('Hello world!');
$printer->send('Bye world!');
?>

以上例程會輸出:

I'm printer!
Hello world!
Bye world!