手动迭代生成器,递归执行 AsyncTask::next
,调用Generator::send
方法将将yield值作为yield表达式结果。
- yield表达式可能是一个异步调用,我们这里为之后把异步调用的结果作为yield表达式结果铺垫。
- yield外侧括号在PHP5必须,PHP7不需要。
如, $ip = (yield async_dns_lookup(...) );
^ |--------------------|
| yield值
| |---------------------------|
yield表达式结果 yield 表达式
<?php
final class AsyncTask
{
public $gen;
public function __construct(\Generator $gen)
{
$this->gen = new Gen($gen);
}
public function begin()
{
$this->next();
}
public function next($result = null)
{
$value = $this->gen->send($result);
if ($this->gen->valid()) {
$this->next($value);
}
}
}
<?php
function newGen()
{
$r1 = (yield 1);
$r2 = (yield 2);
echo $r1, $r2;
}
$task = new AsyncTask(newGen());
$task->begin(); // output: 12