標籤:
擴充地址:http://docs.php.net/manual/zh/book.pthreads.php
注意事項
php5.3或以上,且為安全執行緒版本。apache和php使用的編譯器必須一致。
通過phpinfo()查看Thread Safety為enabled則為安全執行緒版。
通過phpinfo()查看Compiler項可以知道使用的編譯器。本人的為:MSVC9 (Visual C++ 2008)。
本人使用環境
32位windows xp sp3,wampserver2.2d(php5.3.10-vc9 + apache2.2.21-vc9)。
一、下載pthreads擴充
:http://windows.php.net/downloads/pecl/releases/pthreads
根據本人環境,我下載的是pthreads-2.0.8-5.3-ts-vc9-x86。
2.0.8代表pthreads的版本。
5.3代表php的版本。
ts表示php要安全執行緒版本的。
vc9表示php要Visual C++ 2008編譯器編譯的。
x86則表示32位的
二、安裝pthreads擴充
複製php_pthreads.dll 到目錄 bin\php\ext\ 下面。(本人路徑D:\wamp\bin\php\php5.3.10\ext)
複製pthreadVC2.dll 到目錄 bin\php\ 下面。(本人路徑D:\wamp\bin\php\php5.3.10)
複製pthreadVC2.dll 到目錄 C:\windows\system32 下面。
開啟php設定檔php.ini。在後面加上extension=php_pthreads.dll
提示!Windows系統需要將 pthreadVC2.dll 所在路徑加入到 PATH 環境變數中。我的電腦--->滑鼠右鍵--->屬性--->進階--->環境變數--->系統變數--->找到名稱為Path的--->編輯--->在變數值最後面加上pthreadVC2.dll的完整路徑(本人的為C:\WINDOWS\system32\pthreadVC2.dll)。
三、測試pthreads擴充
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(); ?>
運行以上代碼出現 Hello World,說明pthreads擴充安裝成功!
附上一個Thinkphp3.2.2簡單例子
<?php namespace Home\Controller; class test extends \Thread { public $url; public $result; public function __construct($url) { $this->url = $url; } public function run() { if ($this->url) { $this->result = 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; } for ($i = 0; $i < 10; $i++) { $urls[] = ‘http://www.baidu.com/s?wd=‘. rand(10000, 20000); } /* 多線程速度測試 */$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()) { dump($workers[$key]->result); } }$e = microtime(true);echo "多線程耗時:".($e-$t)."秒<br>"; /* 單線程速度測試 */$t = microtime(true); foreach ($urls as $key=>$url) { dump(model_http_curl_get($url)); }$e = microtime(true);echo "For迴圈耗時:".($e-$t)."秒<br>";
測試結果如下:
多線程耗時:2.8371710777282714844秒
For迴圈耗時:10.941586017608642578秒
原文出自:http://www.thinkphp.cn/topic/22676.html
windows下安裝php真正的多線程擴充pthreads教程