首页 > PHP资讯 > PHP培训技术 > PHP的线程库 pthreads

PHP的线程库 pthreads

PHP培训技术

该项目为 PHP 提供基于 POSIX 的多线程编程机制。可异步执行任何与定义的用户自定义方法和函数。内建支持同步和同步方法。

要求:

  • PHP5.3+

  • ZTS Enabled ( Thread Safety )

  • Posix Threads Implementation

示例代码:

<?phpclass AsyncOperation extends Thread {  public function __construct($arg){    $this->arg = $arg;  }  public function run(){    if($this->arg){      printf("Hello %sn", $this->arg);    }  }}$thread = new AsyncOperation("World");if($thread->start())  $thread->join();?>
本文由欣才IT学院整理发布,未经许可,禁止转载。