一、首先打开phpinfo查看php配置
查看Thread Safety为enabled则为线程安全版。
查看你的PHP环境参数,然后下载相应的pthreads扩展;版本选错了,程序是不能运行的。
注意以下几个地方
PHP Version 5.5.x
Compiler:MSVC11 (Visual C++ 2012)
Architecture:x86
PHP Extension Build: API20121212,TS,VC11
二、下载安装pthreads扩展
下载地址:http://windows.php.net/downloads/pecl/releases/pthreads
版本选择:php_pthreads-2.0.7-5.5-ts-vc11-x86.rar
2.0.7代表pthreads的版本。
5.5代表php的版本。
ts表示php要线程安全版本的。
vc11表示php要Visual C++ 2008编译器编译的。
x86则表示32位的
这些都是根据phpinfo中那几个地方再选择的,版本选错了,程序是不能运行的。
三、安装pthreads
复制php_pthreads.dll 到目录 bin\php\ext\ 下面。(本人路径D:\phpstudy\php\php-\5.4.45\ext)
复制pthreadVC2.dll 到目录 bin\php\ 下面。(本人路径D:\phpstudy\php\php-\5.4.45\)
复制pthreadVC2.dll 到目录 C:\windows\system32 下面。
打开php配置文件php.ini。在后面加上extension=php_pthreads.dll
提示!Windows系统需要将 pthreadVC2.dll 所在路径加入到 PATH 环境变量中。
我的电脑--->鼠标右键--->属性--->高级--->环境变量--->系统变量
--->找到名称为Path的--->编辑--->在变量值最后面加上pthreadVC2.dll的完整路径(本人的为C:\Windows\System32\pthreadVC2.dll)。
特别注意:遇到Class 'Thread' not found这个问题,解决办法:apache 的httpd.conf 文件中加上:LoadFile "D:/phpStudy/php/php-5.5.38/pthreadVC2.dll",然后重启phpstudy。
四、测试是否安装成功
<?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();
?>
五、案例thinkphp3.2,测试速度
建立Stock项目目录
<?php
namespace Home\Controller;
use Think\Controller;
class test extends \Thread {
public $url;
public $result;
public function __construct($url) {
$this->url = $url;
}
public function run() {
if ($this->url) {
$this->result =$this-> model_http_curl_get($this->url);
}
}
function model_http_curl_get($url) {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_TIMEOUT, 5);
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)');
$result = curl_exec($curl);
curl_close($curl);
return $result;
}
}
class IndexController extends Controller{
function model_http_curl_get($url) {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_TIMEOUT, 5);
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)');
$result = curl_exec($curl);
curl_close($curl);
return $result;
}
public function ceshi(){
for ($i = 0; $i < 10; $i++) {
$urls[] = 'http://www.baidu.com/s?wd=1000'. $i;
}
//多线程速度测试
$t = microtime(true);
foreach ($urls as $key=>$url) {
$workers[$key] = new test($url);
$workers[$key]->start();
}
foreach ($workers as $key=>$worker) {
while($workers[$key]->isRunning()) {
usleep(100);
}
if ($workers[$key]->join()) {
var_dump($workers[$key]->result);
}
}
$e = microtime(true);
echo "多线程耗时:".($e-$t)."秒<br>";
//单线程速度测试
$t = microtime(true);
foreach ($urls as $key=>$url) {
var_dump($this->model_http_curl_get($url));
}
$e = microtime(true);
echo "For循环耗时:".($e-$t)."秒<br>";
}
}
?>
运行一下这个例子就能够看出来效果了