update : 2015.11.03
php.shukuma.com

검색:
 
 
Send a value to the generator

Generator::send

(PHP 5 >= 5.5.0)

Generator::sendSend a value to the generator

설명

public mixed Generator::send ( mixed $value )

Sends the given value to the generator as the result of the current yield expression and resumes execution of the generator.

If the generator is not at a yield expression when this method is called, it will first be let to advance to the first yield expression before sending the value. As such it is not necessary to "prime" PHP generators with a Generator::next() call (like it is done in Python).

인수

value

Value to send into the generator. This value will be the return value of the yield expression the generator is currently at.

반환값

Returns the yielded value.

예제

Example #1 Using Generator::send() to inject values

<?php
function printer() {
    while (
true) {
        
$string yield;
        echo 
$string;
    }
}

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

위 예제의 출력:

Hello world!
Bye world!