大多開發過程當中,php處理事務絕大部分都是不會用到多線程知識的,可是這不該該是其餘語言開發者對phper的槽點之一。php是世界最好的語言\滑稽。php
php如何使用多線程呢?所幸git裏有php多線程的項目(官方手冊:http://php.net/manual/zh/book.pthreads.php)git
php如何安裝pthreads的拓展的,我採用的是windows安裝windows
我本機的開發環境是phpstudy數組
有幾點特別須要注意,在window中此類拓展必定是要在線程安全(ts)的php版本中運行安全
複製php_pthreads.dll 到目錄 bin\php\ext\ ,複製pthreadVC2.dll 到目錄 C:\windows\system32 下面。
打開php配置文件php.ini。在後面加上extension=php_pthreads.dll
提示!Windows系統須要將 pthreadVC2.dll 所在路徑加入到 PATH 環境變量中。個人電腦--->鼠標右鍵--->屬性--->高級--->環境變量--->系統變量--->找到名稱爲Path的--->編輯--->在變量值最後面加上pthreadVC2.dll的完整路徑(本人的爲C:\WINDOWS\system32\pthreadVC2.dll)。多線程
測試腳本我複製的是http://zyan.cc/pthreads/這裏的實例代碼。運行也是能正常跑起來curl
不過本人的測試結果發現,多線程的時候返回值中,數組會有空的狀況,這我就很奇怪了,難道說主程不是在子線程結束後返回,提早返回了嗎? 實例代碼中測試
這裏我貼上個人代碼,就是在子線程中我添加了日誌記錄,判斷下他的返回值如何this
<?php set_time_limit(0); class test_thread_run extends Thread { public $url; public $data='init'; public function __construct($url) { $this->url = $url; } public function run() { if(($url = $this->url)) { $this->data = model_http_curl_get($url); } } } function model_thread_result_get($urls_array) { foreach ($urls_array as $key => $value) { $thread_array[$key] = new test_thread_run($value["url"]); $thread_array[$key]->start(); } foreach ($thread_array as $thread_array_key => $thread_array_value) { while($thread_array[$thread_array_key]->isRunning()) { usleep(10); } if($thread_array[$thread_array_key]->join()) { $variable_data[$thread_array_key] = $thread_array[$thread_array_key]->data; } } return $variable_data; } function model_http_curl_get($url,$userAgent="") { $userAgent = $userAgent ? $userAgent : 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)'; $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, $userAgent); $result = curl_exec($curl); if($result=== false){ $result = curl_error($curl); } curl_close($curl); $pid = Thread::getCurrentThreadId(); $file='D:\\pid\\'.$pid.'p.txt'; file_put_contents($file,$result); return $result; } for ($i=0; $i < 100; $i++) { $urls_array[] = array("name" => "baidu", "url" => "http://www.baidu.com/s?wd=".mt_rand(10000,20000)); } $t = microtime(true); $result = model_thread_result_get($urls_array); $e = microtime(true); echo "多線程:".($e-$t)."\n"; //print_r($result); $t = microtime(true); foreach ($urls_array as $key => $value) { $result_new[$key] = model_http_curl_get($value["url"]); } $e = microtime(true); echo "For循環:".($e-$t)."\n"; //print_r($result_new); ?>
結果在個人目錄下url
裏面的文本內容是
也就是說子線程是正常調度了,可是沒有拿到數據。此類狀況多是個人網速的緣由,垃圾8M電信。
這個小波折也證實了,php多線程確實要被單線程執行速度要快。多線程在php仍是有運用場景的,相似線程池pool中使用隊列work,來作出隊列的腳本加快出隊列速度。