최근 요청사항이 있습니다. 클라이언트를 통해 메시지를 보내지 않고도 모든 회원에게 맞춤형 메시지를 보낼 수 있는 기능을 구현하고 싶습니다. 전송되는 메시지는 message에서 확인할 수 있습니다. 비즈니스 로직을 기준으로 수행됩니다.
활성 메시지 푸시 구현
보통 우리는 swoole 을 사용하여 WebSocket 을 작성합니다. 서비스는 세 가지 청취 상태인 열기, 메시지 및 닫기를 가장 많이 사용할 수 있지만 다음을 보지 마십시오. 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 콜백을 적극적으로 트리거합니다. 구현 방법은 우리에게 익숙한 컬 요청입니다.
# 调用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); // 主动推送消息
Purpose
onRequest 콜백은 컨트롤러에서 호출되는 템플릿 메시지 등 컨트롤러에서 호출해야 하는 푸시 메시지에 특히 적합합니다.
PHP 관련 지식을 더 보려면 PHP 중국어 웹사이트를 방문하세요!
위 내용은 laravel+Swoole을 사용하여 웹소켓 활성 메시지 푸시 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!