(PECL pthreads >= 2.0.0)
Thread::isJoined â çść ăć¤ĺşăă
ăăŽăšăŹăăăĺćăăăŚăăăăŠăăă調ăšăžăă
ăăŽé˘ć°ăŤăŻăăŠăĄăźăżăŻăăăžăăă
äž1 ăšăŹăăăŽçść ăć¤ĺşăă
<?php
class My extends Thread {
public function run() {
$this->synchronized(function($thread){
if (!$thread->done)
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
var_dump($my->isJoined());
$my->synchronized(function($thread){
$thread->done = true;
$thread->notify();
}, $my);
?>ä¸ăŽäžăŽĺşĺăŻäťĽä¸ă¨ăŞăăžăă
bool(false)