(PECL pthreads >= 2.0.0)
Threaded::isRunning — 狀態(tài)檢測(cè)
對(duì)象是否正在運(yùn)行
此函數(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)