程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP實現多線程的一些問題解決方法

PHP實現多線程的一些問題解決方法

編輯:PHP綜合

你想使用PHP來實現多線程,沒有辦法實現嗎?來看下本文的解決方法吧。假設你正在寫一個基於多台服務器的PHP應用,理想的情況時同時向多台服務器發送請求,而不是一台接一台。可以實現嗎?當有人想要實現並發功能時,他們通常會想到用fork或者spawn threads,但是當他們發現PHP不支持多線程的時候,大概會轉換思路去用一些不夠好的語言,比如Perl。

其實的是大多數情況下,你大可不必使用fork或者線程,並且你會得到比用fork或thread更好的性能。假設你要建立一個服務來檢查正在運行的n台服務器,以確定他們還在正常運轉。你可能會寫下面這樣的代碼:

  1. $hosts = array("host1.sample.com", "host2.sample.com", "host3.sample.com");  
  2. $timeout = 15;  
  3. $status = array();  
  4. foreach ($hosts as $host) {   
  5.         $errno = 0;   
  6.         $errstr = "";   
  7.         $s = fsockopen($host, 80, $errno, $errstr, $timeout);   
  8.         if ($s) {    
  9.              $status[$host] = "Connectedn";    
  10.              fwrite($s, "HEAD / HTTP/1.0rnHost: $hostrnrn");    
  11.             do {     
  12.                 $data = fread($s, 8192);     
  13.                 if (strlen($data) == 0) {     
  14.                 break;     
  15.                 }     
  16.              $status[$host] .= $data;    
  17.          }   
  18.          while (true);    
  19.             fclose($s);   
  20.           }   
  21.          else {    
  22.               $status[$host] = "Connection failed: $errno $errstrn";   
  23.          }  
  24. }  
  25. print_r($status);  
  26. ?> 

它運行的很好,但是在fsockopen()分析完hostname並且建立一個成功的連接(或者延時$timeout秒)之前,擴充這段代碼來管理大量服務器將耗費很長時間。

因此我們必須放棄這段代碼;我們可以建立異步連接-不需要等待fsockopen返回連接狀態。PHP仍然需要解析hostname(所以直接使用ip更加明智),不過將在打開一個連接之後立刻返回,繼而我們就可以連接下一台服務器。

有兩種方法可以實現;PHP5中可以使用新增的stream_socket_clIEnt()函數直接替換掉fsocketopen()。PHP5之前的版本,你需要自己動手,用sockets擴展解決問題。下面是PHP5中的解決方法:

  1. $hosts = array("host1.sample.com", "host2.sample.com", "host3.sample.com");  
  2. $timeout = 15;  
  3. $status = array();  
  4. $sockets = array();  
  5. /* Initiate connections to all the hosts simultaneously */  
  6. foreach ($hosts as $id => $host) {   
  7.         $s = stream_socket_clIEnt("$host:80", $errno, $errstr, $timeout,    
  8.              STREAM_CLIENT_ASYNC_CONNECT|STREAM_CLIENT_CONNECT);   
  9.         if ($s) {    
  10.             $sockets[$id] = $s;    
  11.             $status[$id] = "in progress";   
  12.         }   
  13.         else {  $status[$id] = "failed, $errno $errstr";   
  14.         }  
  15. }  
  16. /* Now, wait for the results to come back in */  
  17.  
  18. while (count($sockets)) {   
  19.       $read = $write = $sockets;   
  20. /* This is the magic function - explained below */   
  21.       $n = stream_select($read, $write, $e = null, $timeout);   
  22.       if ($n > 0) {    
  23.       /* readable sockets either have data for us, or are failed   * connection attempts */    
  24.           foreach ($read as $r) {        
  25.                    $id = array_search($r, $sockets);        
  26.                    $data = fread($r, 8192);        
  27.           if (strlen($data) == 0) {     
  28.                    if ($status[$id] == "in progress") {      
  29.                        $status[$id] = "failed to connect";     
  30.                    }     
  31.           fclose($r);     
  32.           unset($sockets[$id]);        
  33.            }   
  34.            else {     
  35.                  $status[$id] .= $data;        
  36.            }    
  37.         }    
  38. /* writeable sockets can accept an HTTP request */    
  39. foreach ($write as $w) {     
  40.          $id = array_search($w, $sockets);     
  41.          fwrite($w, "HEAD / HTTP/1.0rnHost: "      
  42.          . $hosts[$id] .  "rnrn");     
  43.          $status[$id] = "waiting for response";    
  44.          }   
  45. }   
  46. else {    
  47. /* timed out waiting; assume that all hosts associated   * with $sockets are faulty */    
  48. foreach ($sockets as $id => $s) {     
  49.          $status[$id] = "timed out "   
  50.          . $status[$id];    
  51.          }    
  52. break;   
  53.   }  
  54. }  
  55. foreach ($hosts as $id => $host) {   
  56.       echo "Host: $hostn"; echo "Status: "   
  57.       . $status[$id] . "nn";  
  58. }   
  59. ?> 

我們用stream_select()等待sockets打開的連接事件。stream_select()調用系統的select(2)函數來工 作:前面三個參數是你要使用的streams的數組;你可以對其讀取,寫入和獲取異常(分別針對三個參數)。stream_select()可以通過設 置$timeout(秒)參數來等待事件發生-事件發生時,相應的sockets數據將寫入你傳入的參數。

下面是PHP4.1.0之後版本的實現,如果你已經在編譯PHP時包含了sockets(ext/sockets)支持,你可以使用根上面類似的代 碼,只是需要將上面的streams/filesystem函數的功能用ext/sockets函數實現。主要的不同在於我們用下面的函數代替 stream_socket_clIEnt()來建立連接:

  1. // This value is correct for Linux, other systems have other values  
  2. define('EINPROGRESS', 115);  
  3. function non_blocking_connect($host, $port, &$errno, &$errstr, $timeout) {   
  4.         $ip = gethostbyname($host);   
  5.         $s = socket_create(AF_INET, SOCK_STREAM, 0);   
  6.         if (socket_set_nonblock($s)) {    
  7.            $r = @socket_connect($s, $ip, $port);    
  8.            if ($r || socket_last_error() == EINPROGRESS) {     
  9.                   $errno = EINPROGRESS;     
  10.                   return $s;    
  11.                }   
  12.          }   
  13.         $errno = socket_last_error($s);   
  14.         $errstr = socket_strerror($errno);   
  15.         socket_close($s);   
  16.         return false;  
  17. }  
  18. ?> 

現在用socket_select()替換掉stream_select(),用socket_read()替換掉fread(),用socket_write()替換掉fwrite(),用socket_close()替換掉fclose()就可以執行腳本了!
PHP5的先進之處在於,你可以用stream_select()處理幾乎所有的stream。例如你可以通過include STDIN用它接收鍵盤輸入並保存進數組,你還可以接收通過proc_open()打開的管道中的數據。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved