(PECL pthreads >= 2.0.0)
Thread::isJoined — 狀態(tài)監(jiān)測
線程是否已經(jīng)被加入(join)
此函數(shù)沒有參數(shù)。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
示例 #1 檢測線程狀態(tài)
<?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)