Thread::isStarted

State Detection

Description

final public boolean Thread::isStarted ( void )

Tell if the referenced Thread has been started

Parameters

This function has no parameters.

Return Values

A boolean indication of state

Examples

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)