当前位置:首页 > PHP教程 > php类库 > 列表

php实现的简单多进程服务器类完整示例

发布:smiling 来源: PHP粉丝网  添加日期:2022-02-09 11:54:40 浏览: 评论:0 

这篇文章主要介绍了php实现的简单多进程服务器类,结合完整实例形式分析了PHP多进程服务器数据传输、响应、处理等相关操作技巧,需要的朋友可以参考下。

本文实例讲述了php实现的简单多进程服务器类,分享给大家供大家参考,具体如下:

php写的一个简单的多进程服务器。

  1. <?php 
  2. class server 
  3.   public $port
  4.   public $ip
  5.   protected $server
  6.   public function __construct($ip = '0.0.0.0'$port
  7.   { 
  8.     $this->ip = $ip
  9.     $this->port = $port
  10.     $this->createSocket(); //创建一个通讯节点 
  11.   } 
  12.   public function listen($callback
  13.   { 
  14.     if(!is_callable($callback)){ 
  15.       throw new Exception('不是闭包,请传递正确的参数'); 
  16.     } 
  17.     //只要我们接收到客户端的数据,就fork一个子进程处理 
  18.     while ($client = socket_accept($this->server)) { //等待客户端接入,返回的是客户端的连接 
  19.       $buf = socket_read($client, 1024); //读取客户端内容 
  20.       $pid=pcntl_fork(); //创建子进程 
  21.       //父进程和子进程都会执行下面代码 
  22.       if ($pid == -1) { 
  23.         //错误处理:创建子进程失败时返回-1. 
  24.         die('could not fork'); 
  25.       } else if ($pid) { 
  26.         //父进程会得到子进程号,所以这里是父进程执行的逻辑 
  27.         var_dump('父进程',$pid); 
  28.         pcntl_wait($status); //等待子进程中断,防止子进程成为僵尸进程。 
  29.       } else { 
  30.         //子进程得到的$pid为0, 所以这里是子进程执行的逻辑。 
  31.         //睡眠 
  32.         if($this->checkRule("/sleep/i",$buf)){ 
  33.           sleep(10); 
  34.           $this->response('休眠10S',$client); 
  35.           socket_close($client); 
  36.           return
  37.         } 
  38.         //请求过滤 
  39.         if(emptyempty($this->checkRule("/GET\s(.*?)\sHTTP\/1.1/i",$buf))){ 
  40.           socket_close($client); 
  41.           return
  42.         } 
  43.         //响应 
  44.         $response= call_user_func($callback,$buf); //回调$callback函数 
  45.         $this->response($response,$client); 
  46.         usleep(1000); //微妙为单位,1000000 微妙等于1秒 
  47.         socket_close($client); 
  48.         exit(); //直接退出 
  49.       } 
  50.     } 
  51. //    while (true) { 
  52. //      $client = socket_accept($this->server); //等待客户端接入,返回的是客户端的连接 
  53. //      $buf = socket_read($client, 1024); //读取客户端内容 
  54. // 
  55. //      //睡眠 
  56. //      if($this->checkRule("/sleep/i",$buf)){ 
  57. //        sleep(10); 
  58. //        $this->response('休眠10S',$client); 
  59. //        socket_close($client); 
  60. //        return; 
  61. //      } 
  62. //      //请求过滤 
  63. //      if(empty($this->checkRule("/GET\s(.*?)\sHTTP\/1.1/i",$buf))){ 
  64. //        socket_close($client); 
  65. //        return; 
  66. //      } 
  67. // 
  68. //      //响应 
  69. //      $response= call_user_func($callback,$buf); //回调$callback函数 
  70. //      $this->response($response,$client); 
  71. //      usleep(1000); //微妙为单位,1000000 微妙等于1秒 
  72. //      socket_close($client); 
  73. // 
  74. //    } 
  75.     socket_close($this->server); 
  76.   } 
  77.   //io 复用 
  78.   //epoll 模型 
  79.   //多进程 
  80.   protected function createSocket() 
  81.   { 
  82.     $this->server = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); 
  83.     //bind 
  84.     socket_set_option($this->server, SOL_SOCKET, SO_REUSEADDR, 1); //复用还处于 TIME_WAIT 
  85.     socket_bind($this->server, $this->ip, $this->port); //细节性的处理自行完成 
  86.     socket_listen($this->server); //开始监听 
  87.   } 
  88.   /** 
  89.    * 协议过滤 
  90.    * @param $reg 
  91.    * @param $buf 
  92.    * @return mixed 
  93.    */ 
  94.   protected function checkRule($reg,$buf){ 
  95.     if(preg_match($reg,$buf,$matchs)){ 
  96.       return $matchs
  97.     } 
  98.     return false; 
  99.   } 
  100.   //请求处理类 
  101.   public function request($buf){ 
  102.     //1.只允许http协议访问 
  103. //    if(preg_match("GET\s(.*?)\sHTTP/1.1",$buf,$matchs)){ //匹配到http协议 
  104. //      return true; 
  105. //    }else{ 
  106. //      return false; 
  107. //    } 
  108.     //2.过滤掉/favicon.ico 
  109.     //3.获取请求信息 
  110.   } 
  111.   protected function response($content,$client){ 
  112.     //返回数据给客户端,响应处理 
  113.     $string="HTTP/1.1 200 OK\r\n"
  114.     $string.="Content-Type: text/html;charset=utf-8\r\n"
  115.     $string.="Content-Length: ".strlen($content)."\r\n\r\n"
  116.     socket_write($client,$string.$content); 
  117.   } 
  118. }

Tags: php多进程服务器类

分享到: