Threaded::isRunning

(PECL pthreads >= 2.0.0)

Threaded::isRunning狀態(tài)檢測(cè)

說明

public Threaded::isRunning(): bool

對(duì)象是否正在運(yùn)行

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

表示運(yùn)行狀態(tài)的布爾值

注意:

如果對(duì)象的 run 方法正在執(zhí)行,則視該對(duì)象為處于運(yùn)行狀態(tài)

范例

示例 #1 檢測(cè)對(duì)象狀態(tài)

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

以上例程會(huì)輸出:

bool(true)