近来有个需求:想实现一个可以主动触发消息推送的功能,这个可以实现向模板消息那个,给予所有成员发送自定义消息,而不需要通过客户端发送消息,服务端上message中监听传送的消息进行做相对于的业务逻辑。
主动消息推送实现
平常我们采用 swoole 来写 websocket 服务可能最多的用到的是open,message,clo这三个监听状态,但是万万没有看下下面的onrequest回调的使用,没错,解决这次主动消息推送的就是需要用onrequest回调。
官方文档:正因为swoole_websocket_rver继承自swoole_http_rver,所以在 w鲸教学设计ebsocket 中有onrequest回调。
详细实现:
1 # 这里是一个laravel中commands 2 # 运行php artisan swoole start 即可运行 3 <?php 4 5 namespace app\console\commands; 6 7 u illuminate\console\command; 8 u swoole_websocket_rver; 9 10 class swoole ex匡衡勤学tends command11 {12 public $ws;13 /**14 * the name and signature of the console command.15 *16 * @var string17 */18 protected $signature = 'swoole {action}';19 20 /**21 * the console command description.22 *23 * @var string24 */25 protected 十一国庆节$description = 'active push message';26 27 /**28 * create a new command instance.29 *30 * @return void31 */32 public function __construct()33 {34 parent::__construct();35 }36 37 /**38 * execute the console command.39 *40 * @return mixed41 */42 public function handle()43 {44 $arg = $this->argument('action');45 switch ($arg) {46 ca 'start':47 $this->info('swoole rver started');48 $this->start();49 break;50 ca 'stop':51 $this->info('swoole rver stoped');52 break;53 ca 'restart':54 $this->info('swoole rver restarted');55 break;56 }57 }58 59 /**60 * 启动swoole61 */62 private function start()63 {64 $this->ws = new swoole_websocket_rver("0.0.0.0", 9502);65 //监听websocket连接打开事件66 $this->ws->on('open', function ($ws, $request) {67 });68 //监听websocket消息事件69 $this->ws->on('message', function ($ws, $frame) {70 $this->info("client is ndmessage\n");71 });72 //监听websocket主动推送消息事件73 $this->ws->on('request', function ($request, $respon) {74 $scene = $request->post['scene']; // 获取值75 $this->info("client is pushmessage\n".$scene);76 });77 //监听websocket连接关闭事件78 $this->ws->on('clo', function ($ws, $fd) {79 $this->info("client is clo\n");80 });81 $this->ws->start();82 }83 }梦幻西游升级经验表
前面说的是 swoole 中onrequest的实现,下面实现下在控制器中主动触发onrequest回调。实现方法就是我们熟悉的curl请求。
1 # 调用activepush方法以后,会在cmd中打印出 2 # client is pushmessage 主动推送消息 字眼 3 /** 4 * curl请求 5 * @param $data 6 */ 7 public function curl($data) 8 { 9 $curl = curl_init();10 curl_topt($curl, curlopt_url, "http://127.0.0.1:9502");11 curl_topt($curl, curlopt_returntransfer, 1);12 curl_topt($curl, curlopt_header, 1);13 curl_topt($curl, curlopt_post, 1);14 curl_topt($curl, curlopt_postfields, $data);15 curl_exec($curl);16 curl_clo($curl);17 }18 19 /**20 * 主动触发21 */22 public function activepush()23 {24 $param['scene'] = '主动推送消息';25 hot怎么读 $this->curl($param); // 主动推送消息
用途
onrequest 回调特别适用于需要在控制器中调用的推送消息,比如模板消息之类,在控制器中调用。
推荐阅读:
php 当swoole遇上 thinkphp5
swoole和redis实现的并发队列处理系统
php laravel+thrift+swoole打造微服务框架
phpswoole-demo tcp服务端简单实现
phpswoole长连接常见问题
php+swoole并发编程的魅力
phpswoole实现毫秒级定时任务
swoole跟thinkphp5结合开发websocket在线聊天通讯系统
本文发布于:2023-04-07 22:08:43,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/3d47e90fe6dc4520452b2a9935d2cb4b.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:实现websocket 主动消息推送,用laravel+Swoole.doc
本文 PDF 下载地址:实现websocket 主动消息推送,用laravel+Swoole.pdf
留言与评论(共有 0 条评论) |