Thread
PHP Manual

Thread::isRunning

(PECL pthreads >= 0.34)

Thread::isRunningState Detection

说明

final public boolean Thread::isRunning ( void )

Tell if the referenced Thread is executing

参数

此函数没有参数。

返回值

A boolean indication of state

Note:

A Thread is considered running while executing the run method

范例

Example #1 Detect the state of the referenced Thread

<?php
class My extends Thread {
    public function 
run() {
        
$this->synchronized(function($thread){
            
$thread->wait();
        }, 
$this);
    }
}
$my = new My();
$my->start();
var_dump($my->isRunning());
$my->synchronized(function($thread){
    
$thread->notify();
}, 
$my);
?>

以上例程会输出:

bool(true)


Thread
PHP Manual