-
php实现的简单多进程服务器类完整示例
这篇文章主要介绍了php实现的简单多进程服务器类,结合完整实例形式分析了PHP多进程服务器数据传输、响应、处理等相关操作技巧,需要的朋友可以参考下。
本文实例讲述了php实现的简单多进程服务器类,分享给大家供大家参考,具体如下:
php写的一个简单的多进程服务器。
- <?php
- class server
- {
- public $port;
- public $ip;
- protected $server;
- public function __construct($ip = '0.0.0.0', $port)
- {
- $this->ip = $ip;
- $this->port = $port;
- $this->createSocket(); //创建一个通讯节点
- }
- public function listen($callback)
- {
- if(!is_callable($callback)){
- throw new Exception('不是闭包,请传递正确的参数');
- }
- //只要我们接收到客户端的数据,就fork一个子进程处理
- while ($client = socket_accept($this->server)) { //等待客户端接入,返回的是客户端的连接
- $buf = socket_read($client, 1024); //读取客户端内容
- $pid=pcntl_fork(); //创建子进程
- //父进程和子进程都会执行下面代码
- if ($pid == -1) {
- //错误处理:创建子进程失败时返回-1.
- die('could not fork');
- } else if ($pid) {
- //父进程会得到子进程号,所以这里是父进程执行的逻辑
- var_dump('父进程',$pid);
- pcntl_wait($status); //等待子进程中断,防止子进程成为僵尸进程。
- } else {
- //子进程得到的$pid为0, 所以这里是子进程执行的逻辑。
- //睡眠
- if($this->checkRule("/sleep/i",$buf)){
- sleep(10);
- $this->response('休眠10S',$client);
- socket_close($client);
- return;
- }
- //请求过滤
- if(emptyempty($this->checkRule("/GET\s(.*?)\sHTTP\/1.1/i",$buf))){
- socket_close($client);
- return;
- }
- //响应
- $response= call_user_func($callback,$buf); //回调$callback函数
- $this->response($response,$client);
- usleep(1000); //微妙为单位,1000000 微妙等于1秒
- socket_close($client);
- exit(); //直接退出
- }
- }
- // while (true) {
- // $client = socket_accept($this->server); //等待客户端接入,返回的是客户端的连接
- // $buf = socket_read($client, 1024); //读取客户端内容
- //
- // //睡眠
- // if($this->checkRule("/sleep/i",$buf)){
- // sleep(10);
- // $this->response('休眠10S',$client);
- // socket_close($client);
- // return;
- // }
- // //请求过滤
- // if(empty($this->checkRule("/GET\s(.*?)\sHTTP\/1.1/i",$buf))){
- // socket_close($client);
- // return;
- // }
- //
- // //响应
- // $response= call_user_func($callback,$buf); //回调$callback函数
- // $this->response($response,$client);
- // usleep(1000); //微妙为单位,1000000 微妙等于1秒
- // socket_close($client);
- //
- // }
- socket_close($this->server);
- }
- //io 复用
- //epoll 模型
- //多进程
- protected function createSocket()
- {
- $this->server = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
- //bind
- socket_set_option($this->server, SOL_SOCKET, SO_REUSEADDR, 1); //复用还处于 TIME_WAIT
- socket_bind($this->server, $this->ip, $this->port); //细节性的处理自行完成
- socket_listen($this->server); //开始监听
- }
- /**
- * 协议过滤
- * @param $reg
- * @param $buf
- * @return mixed
- */
- protected function checkRule($reg,$buf){
- if(preg_match($reg,$buf,$matchs)){
- return $matchs;
- }
- return false;
- }
- //请求处理类
- public function request($buf){
- //1.只允许http协议访问
- // if(preg_match("GET\s(.*?)\sHTTP/1.1",$buf,$matchs)){ //匹配到http协议
- // return true;
- // }else{
- // return false;
- // }
- //2.过滤掉/favicon.ico
- //3.获取请求信息
- }
- protected function response($content,$client){
- //返回数据给客户端,响应处理
- $string="HTTP/1.1 200 OK\r\n";
- $string.="Content-Type: text/html;charset=utf-8\r\n";
- $string.="Content-Length: ".strlen($content)."\r\n\r\n";
- socket_write($client,$string.$content);
- }
- }
出处:http://www.phpfensi.com/php/20220209/19820.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式