(PECL pthreads >= 2.0.0)
Thread::isStarted — Détection de statut
Indique si le Thread référencé a été démarré.
Cette fonction ne contient aucun paramètre.
   Cette fonction retourne true en cas de succès ou false si une erreur survient.
  
Exemple #1 Indique si le Thread référencé a été démarré
<?php
$worker = new Worker();
$worker->start();
var_dump($worker->isStarted());
?>
L'exemple ci-dessus va afficher :
bool(true)