我使用的是并行线程扩展库。 当我从执行PHP脚本cmd
在Windows上,我得到的并行线程,但是当我调用同一个脚本的Apache,我得到不同的结果,似乎对我来说,单个线程执行。
有没有办法,我应该为Apache得到回应像任何配置cmd
(平行)?
class AsyncOperation extends Thread {
public function __construct($arg){
$this->arg = $arg;
}
public function run(){
if($this->arg){
for($i = 0; $i < 50; $i++) {
echo "Yoo " . $this->arg . "<br>\n";
}
}
}
}
$thread = new AsyncOperation("World ----------");
$thread2 = new AsyncOperation("Second -------------------------");
$thread->start();
$thread2->start();
for($i = 0; $i < 100; $i++) {
echo "Standard <br>\n";
}
$thread->join();
$thread2->join();
示例代码给响应cmd
等:
Yoo World ----------<br>
Yoo World ----------<br>
Yoo World ----------<br>
Standard <br>
Standard <br>
Yoo World ----------<br>
Yoo Second -------------------------<br>
Standard <br>
Standard <br>
在Web浏览器中:
Yoo World ----------
Yoo World ----------
Yoo World ----------
Yoo World ----------
...
Yoo Second -------------------------
Yoo Second -------------------------
Yoo Second -------------------------
Yoo Second -------------------------
...
Standard
Standard
Standard
Standard
...
更新:在不同的浏览器我得到不同的结果; 这个问题可能与缓冲区,我要去调查。