(PECL pthreads >= 2.0.0)
Thread::isJoined — 状態を検出する
このスレッドが同期されているかどうかを調べます。
この関数にはパラメータはありません。
状態を表す boolean 値を返します。
例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)