(PECL pthreads >= 3.0.0)
Threaded::notifyOne — 同步
此函数没有参数。
示例 #1 通知和等待
<?php
class My extends Thread {
public function run() {
/** 使此线程等待 **/
$this->synchronized(function($thread){
if (!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
/** 向等待的线程发送通知 **/
$my->synchronized(function($thread){
$thread->done = true;
$thread->notifyOne();
}, $my);
var_dump($my->join());
?>
上面的示例将输出
bool(true)