基于swoole扩展的php websocket
程序员文章站
2022-03-24 15:57:08
...
<?php define('DEBUG', 'on'); define("WEBPATH", str_replace("\\","/", __DIR__)); require __DIR__ . '/../libs/lib_config.php'; class WebSocket extends Swoole\Network\Protocol\WebSocket { /** * 下线时,通知所有人 */ function onClose($serv, $client_id, $from_id) { //将下线消息发送给所有人 //$this->log("onOffline: " . $client_id); //$this->broadcast($client_id, "onOffline: " . $client_id); parent::onClose($serv, $client_id, $from_id); } /** * 接收到消息时 * @see WSProtocol::onMessage() */ function onMessage($client_id, $ws) { $this->log("onMessage: ".$client_id.' = '.$ws['message']); $this->send($client_id, "Server: ".$ws['message']); //$this->broadcast($client_id, $ws['message']); } function broadcast($client_id, $msg) { foreach ($this->connections as $clid => $info) { if ($client_id != $clid) { $this->send($clid, $msg); } } } } $AppSvr = new WebSocket(); $AppSvr->loadSetting(__DIR__."/swoole.ini"); //加载配置文件 $AppSvr->setLogger(new \Swoole\Log\EchoLog(true)); //Logger $server = new \Swoole\Network\Server('0.0.0.0', 9503); $server->setProtocol($AppSvr); //$server->daemonize(); //作为守护进程 $server->run(array('worker_num' =>4));
上一篇: javascript怎么进行求幂运算
下一篇: php怎么将数字转换成数组
推荐阅读
-
PHP parse_ini_file函数的应用与扩展操作示例
-
PHP基于openssl实现的非对称加密操作示例
-
基于PHP中的常用函数回顾
-
PHP基于文件存储实现缓存的方法
-
php 实现简单的登录功能示例【基于thinkPHP框架】
-
PHP添加Xdebug扩展的方法
-
PHP扩展CURL的用法详解
-
EpiiAdmin 开源的php交互性管理后台框架, 让复杂的交互变得更简单!Phper快速搭建交互性平台的开发框架,基于Thinkphp5.1+Adminlte3.0+Require.js。
-
PHP读取Excel内的图片(phpspreadsheet和PHPExcel扩展库)
-
没有发现 PHP 的扩展设置mbstring