(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.
Un booléen indiquant le statut de l'opération.
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)