首页 > 编程语言 > 详细

php pthread 多线程

时间:2015-06-05 00:09:20      阅读:420      评论:0      收藏:0      [点我收藏+]

php pthread多线程应用demo:
class TestThread extends Thread{
public $text;
public function run(){
$this->text = file_get_contents("http://www.buyigang.com");

}
}

$threads = array();

$time = microtime(true);

for($i=0;$i<20;$i++){
$threads[$i] = new TestThread;
$threads[$i]->start();
}

for($i=0;$i<20;$i++){
if($threads[$i]->join()){
file_put_contents(‘a.txt‘,$i,FILE_APPEND);
}
}

echo microtime(true)-$time.‘
==========================================
‘;

$time = microtime(true);
for($i=0;$i<20;$i++){
$text = file_get_contents("http://www.buyigang.com");
file_put_contents(‘b.txt‘,$i,FILE_APPEND);
}
echo microtime(true)-$time.‘

php pthread 多线程

原文:http://www.cnblogs.com/hilo/p/4553222.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!