(PECL pthreads >= 2.0.0)
Thread::isJoined — Detección de estado
Esta función no contiene ningún parámetro.
Ejemplo #1 Detecta el estado del Thread referenciado
<?php
class My extends Thread {
    public function run() {
        $this->synchronized(function($thread){
            if (!$thread->done)
                $this->wait();
        }, $this);
    }
}
$my = new My();
$my->start();
var_dump($my->isJoined());
$my->synchronized(function($thread){
    $thread->done = true;
    $thread->notify();
}, $my);
?>El ejemplo anterior mostrará:
bool(false)
