(PECL pthreads >= 2.0.0)
Threaded::isRunning — Detección de estado
Se verifica si el objeto referenciado está en ejecución.
Esta función no contiene ningún parámetro.
Un valor booleano que indica el estado.
Nota:
Un objeto se considera en ejecución cuando ejecuta el método run.
Ejemplo #1 Detecta el estado del objeto referenciado
<?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->isRunning());
$my->synchronized(function($thread){
    $thread->done = true;
    $thread->notify();
}, $my);
?>El ejemplo anterior mostrará:
bool(true)
