Laravel使用swoole实现websocket主动消息推送的方法介绍
发布:smiling 来源: PHP粉丝网 添加日期:2022-01-14 10:06:57 浏览: 评论:0
这篇文章主要给大家介绍了关于Laravel使用swoole实现websocket主动消息推送的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者使用Laravel具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧。
需求
需要实现一个可以主动触发消息推送的功能,这个可以实现向模板消息那个,给予所有成员发送自定义消息,而不需要通过客户端发送消息,服务端上message中监听传送的消息进行做相对于的业务逻辑。
主动消息推送实现
平常我们采用 swoole 来写 WebSocket 服务可能最多的用到的是open,message,close这三个监听状态,但是万万没有看下下面的onRequest回调的使用,没错,解决这次主动消息推送的就是需要用onRequest回调。
官方文档:正因为swoole_websocket_server继承自swoole_http_server,所以在 websocket 中有onRequest回调。
详细实现:
- # 这里是一个laravel中Commands
- # 运行php artisan swoole start 即可运行
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use swoole_websocket_server;
- class Swoole extends Command
- {
- public $ws;
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'swoole {action}';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Active Push Message';
- /**
- * Create a new command instance.
- *
- * @return void
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * Execute the console command.
- *
- * @return mixed
- */
- public function handle()
- {
- $arg = $this->argument('action');
- switch ($arg) {
- case 'start':
- $this->info('swoole server started');
- $this->start();
- break;
- case 'stop':
- $this->info('swoole server stoped');
- break;
- case 'restart':
- $this->info('swoole server restarted');
- break;
- }
- }
- /**
- * 启动Swoole
- */
- private function start()
- {
- $this->ws = new swoole_websocket_server("0.0.0.0", 9502);
- //监听WebSocket连接打开事件
- $this->ws->on('open', function ($ws, $request) {
- });
- //监听WebSocket消息事件
- $this->ws->on('message', function ($ws, $frame) {
- $this->info("client is SendMessage\n");
- });
- //监听WebSocket主动推送消息事件
- $this->ws->on('request', function ($request, $response) {
- $scene = $request->post['scene']; // 获取值
- $this->info("client is PushMessage\n".$scene);
- });
- //监听WebSocket连接关闭事件
- $this->ws->on('close', function ($ws, $fd) {
- $this->info("client is close\n");
- });
- $this->ws->start();
- }
- }
前面说的是 swoole 中onRequest的实现,下面实现下在控制器中主动触发onRequest回调,实现方法就是我们熟悉的curl请求。
- # 调用activepush方法以后,会在cmd中打印出
- # client is PushMessage 主动推送消息 字眼
- /**
- * CURL请求
- * @param $data
- */
- public function curl($data)
- {
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, "http://127.0.0.1:9502");
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLOPT_HEADER, 1);
- curl_setopt($curl, CURLOPT_POST, 1);
- curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
- curl_exec($curl);
- curl_close($curl);
- }
- /**
- * 主动触发
- */
- public function activepush()
- {
- $param['scene'] = '主动推送消息';
- $this->curl($param); // 主动推送消息
Tags: Laravel swoole websocket
- 上一篇:laravel 解决路由除了根目录其他都404的问题
- 下一篇:最后一页
相关文章
- ·Laravel 5.6中的CURD操作(代码示例详解)(2020-01-15)
- ·如何在laravel 5中创建用于XSS防御的中间件? (2020-01-16)
- ·关于Laravel重定向的七种方法详解(2020-01-26)
- ·如何在laravel 5中使用DB事务?(2020-01-31)
- ·Laravel中如何给图片加水印?(2020-04-05)
- ·Laravel框架数据库CURD操作、连贯操作总结(2021-04-10)
- ·Laravel框架路由配置总结、设置技巧大全(2021-04-10)
- ·Laravel框架中扩展函数、扩展自定义类的方法(2021-04-10)
- ·跟我学Laravel之快速入门(2021-04-16)
- ·跟我学Laravel之安装Laravel(2021-04-16)
- ·跟我学Laravel之配置Laravel(2021-04-16)
- ·跟我学Laravel之请求(Request)的生命周期(2021-04-16)
- ·跟我学Laravel之路由(2021-04-16)
- ·跟我学Laravel之请求与输入(2021-04-17)
- ·跟我学Laravel之视图 & Response(2021-04-17)
- ·laravel安装和配置教程(2021-04-19)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)