Thread
PHP Manual

Thread::isStarted

(PECL pthreads >= 0.34)

Thread::isStartedState Detection

说明

final public boolean Thread::isStarted ( void )

Tell if the referenced Thread has been started

参数

此函数没有参数。

返回值

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());
?>

以上例程会输出:

bool(true)


Thread
PHP Manual