Thread::isStarted
(PECL pthreads >= 0.34)
Thread::isStarted — State Detection
Descripción
final public boolean Thread::isStarted
( void
)
Tell if the referenced Thread has been started
Parámetros
Esta función no tiene parámetros.
Valores devueltos
A boolean indication of state
Ejemplos
Ejemplo #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());
?>
El resultado del ejemplo sería:
bool(true)
There are no user contributed notes for this page.
