Worker
PHP Manual

Worker::isShutdown

(PECL pthreads >= 0.37)

Worker::isShutdownState Detection

说明

final public boolean Worker::isShutdown ( void )

Tell if the referenced Worker has been shutdown

参数

此函数没有参数。

返回值

A boolean indication of state

范例

Example #1 Detect the state of a Worker

<?php
class My extends Worker {
    public function 
run() {
        
/* ... */
    
}
}
$my = new My();
$my->start();
var_dump($my->isShutdown());
$my->shutdown();
var_dump($my->isShutdown());
?>

以上例程会输出:

bool(false)
bool(true)


Worker
PHP Manual