当前位置:首页 > PHP教程 > php高级应用 > 列表

php多线程实现方法及用法实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-21 11:04:29 浏览: 评论:0 

这篇文章主要介绍了php多线程实现方法及用法实例,PHP多线程实现方法和fsockopen函数有关,需要的朋友可以参考下。

下面我们来介绍具体php多线程实现程序代码,有需要了解的同学可参考。

当有人想要实现并发功能时,他们通常会想到用fork或者spawn threads,但是当他们发现php不支持多线程的时候,大概会转换思路去用一些不够好的语言,比如perl。

其实的是大多数情况下,你大可不必使用fork 或者线程,并且你会得到比用fork 或thread 更好的性能。

假设你要建立一个服务来检查正在运行的n台服务器,以确定他们还在正常运转。你可能会写下面这样的代码:

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

它运行的很好,但是在fsockopen()分析完hostname并且建立一个成功的连接(或者延时$timeout秒)之前,扩充这段代码来管理大量服务器将耗费很长时间。

因此我们必须放弃这段代码;我们可以建立异步连接-不需要等待fsockopen返回连接状态。PHP仍然需要解析hostname(所以直接使用ip更加明智),不过将在打开一个连接之后立刻返回,继而我们就可以连接下一台服务器。

有两种方法可以实现:PHP5中可以使用新增的stream_socket_client()函数直接替换掉fsocketopen()。PHP5之前的版本,你需要自己动手,用sockets扩展解决问题。

下面是PHP5中的解决方法:

  1. <?php 
  2. $hosts = array("host1.sample.com""host2.sample.com""host3.sample.com"); 
  3. $timeout = 15; 
  4. $status = array(); 
  5. $sockets = array(); 
  6. /* Initiate connections to all the hosts simultaneously */ 
  7. foreach ($hosts as $id => $host) { 
  8.  $s = stream_socket_client(" 
  9. $host:80", $errno$errstr$timeout
  10.  STREAM_CLIENT_ASYNC_CONNECT|STREAM_CLIENT_CONNECT); 
  11.  if ($s) { 
  12.  $sockets[$id] = $s
  13.  $status[$id] = "in progress"
  14.  } else { 
  15.  $status[$id] = "failed, $errno $errstr"
  16.  } 
  17. /* Now, wait for the results to come back in */ 
  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 
  24.   * connection attempts */ 
  25.  foreach ($read as $r) { 
  26.    $id = array_search($r$sockets); 
  27.    $data = fread($r, 8192); 
  28.    if (strlen($data) == 0) { 
  29.   if ($status[$id] == "in progress") { 
  30.   $status[$id] = "failed to connect"
  31.   } 
  32.   fclose($r); 
  33.   unset($sockets[$id]); 
  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.  } else { 
  46.  /* timed out waiting; assume that all hosts associated 
  47.   * with $sockets are faulty */ 
  48.  foreach ($sockets as $id => $s) { 
  49.   $status[$id] = "timed out " . $status[$id]; 
  50.  } 
  51.  break
  52.  } 
  53. foreach ($hosts as $id => $host) { 
  54.  echo "Host: $hostn"
  55.  echo "Status: " . $status[$id] . "nn"
  56. }  
  57. ?> 

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

现在用socket_select()替换掉stream_select(),用socket_read()替换掉fread(),用socket_write()替换掉fwrite(),用socket_close()替换掉fclose()就可以执行脚本了!

PHP5的先进之处在于,你可以用stream_select()处理几乎所有的stream-例如你可以通过include STDIN用它接收键盘输入并保存进数组,你还可以接收通过proc_open()打开的管道中的数据。

下面来分享一个PHP多线程类:

  1. * @title:   PHP多线程类(Thread) 
  2.  * @version:  1.0 
  3.  *  
  4.  * PHP多线程应用示例: 
  5.  * require_once 'thread.class.php'
  6.  * $thread = new thread(); 
  7.  * $thread->addthread('action_log','a'); 
  8.  * $thread->addthread('action_log','b'); 
  9.  * $thread->addthread('action_log','c'); 
  10.  * $thread->runthread(); 
  11.  *  
  12.  * function action_log($info) { 
  13.  *   $log = 'log/' . microtime() . '.log'
  14.  *   $txt = $info . "rnrn" . 'Set in ' . Date('h:i:s', time()) . (double)microtime() . "rn"
  15.  *   $fp = fopen($log'w'); 
  16.  *   fwrite($fp$txt); 
  17.  *   fclose($fp); 
  18.  * } 
  19.  */ 
  20. class thread { 
  21.    
  22.   var $hooks = array(); 
  23.   var $args = array(); 
  24.    
  25.   function thread() { 
  26.   } 
  27.    
  28.   function addthread($func
  29.   { 
  30.     $args = array_slice(func_get_args(), 1); 
  31.     $this->hooks[] = $func
  32.     $this->args[] = $args
  33.     return true; 
  34.   } 
  35.    
  36.   function runthread() 
  37.   { 
  38.     if(isset($_GET['flag'])) 
  39.     { 
  40.       $flag = intval($_GET['flag']); 
  41.     } 
  42.     if($flag || $flag === 0) 
  43.     { 
  44.       call_user_func_array($this->hooks[$flag], $this->args[$flag]); 
  45.     } 
  46.     else 
  47.     { 
  48.       for($i = 0, $size = count($this->hooks); $i < $size$i++) 
  49.       { 
  50.         $fp=fsockopen($_SERVER['HTTP_HOST'],$_SERVER['SERVER_PORT']); 
  51.         if($fp
  52.         { 
  53.           $out = "GET {$_SERVER['PHP_SELF']}?flag=$i HTTP/1.1rn"
  54.           $out .= "Host: {$_SERVER['HTTP_HOST']}rn"
  55.           $out .= "Connection: Closernrn"
  56.           fputs($fp,$out); 
  57.           fclose($fp); 
  58.         } 
  59.       } 
  60.     } 
  61.   } 

希望本文所述对大家的PHP程序设计有所帮助。

Tags: php多线程

分享到: