(PECL pthreads >= 0.34)
Thread::isStarted — State Detection
Tell if the referenced Thread has been started
This function has no parameters.
A boolean indication of state
Example #1 Detect the state of the referenced Thread
<?php
class My extends Thread {
public function run() {
/* ... */
}
}
$my = new My();
$my->start();
var_dump($my->isStarted());
?>
The above example will output:
bool(true)