Even if you kill() a thread, the isStarted() method will still return true.
(PECL pthreads >= 2.0.0)
Thread::isStarted — Détection de statut
Cette fonction ne contient aucun paramètre.
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)
Even if you kill() a thread, the isStarted() method will still return true.