PHP - Threaded::isRunning() 函数



Threaded::isRunning - 状态检测。

语法

public boolean Threaded::isRunning( void )

Threaded::isRunning 函数可以判断引用的对象是否正在执行。

Threaded::isRunning 函数没有任何参数,并返回一个布尔值来指示状态。

示例

<?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);
?>
php_function_reference.htm
广告