win7x64旗艦版,PHP5.5.12,在phpinfo里頭已經(jīng)包含了pthreads,
并且網(wǎng)上的測試案例
<?php
class AsyncOperation extends Thread {
public function __construct($arg){
$this->arg = $arg;
}
public function run(){
if($this->arg){
printf("Hello %s\n", $this->arg);
}
}
}
$thread = new AsyncOperation("World");
if($thread->start())
$thread->join();
?>
也測試通過,但是啟動workerman的時候就是
pthreads
You have to install pthreads extension
Workerman start fail