The principle and detailed explanation of PHP's real-time push of system messages to the client

藏色散人
Release: 2023-04-08 09:46:01
forward
2726 people have browsed it

The principle and detailed explanation of PHP's real-time push of system messages to the client

In our actual development process, some data need to be obtained in real time;

For example, order information in the ERP system, process approval in the OA system, etc. need to be processed in a timely manner , then we can no longer use the http protocol; of course, we can also use the polling mechanism.

But most of the polling requests are useless, wasting bandwidth and server resources.

At this time we have to use the websocket protocol to meet this business need;

Preparation work:

Installation PHP-swooleExpand;

Post the code directly;

<?php
new class
{
    private $_serv = null;
    public function __construct()
    {
        $this->_serv = new swoole_websocket_server(&#39;0.0.0.0&#39;, 6552);
        $this->_serv->set(array(
            &#39;worker_num&#39;      => 2,
            &#39;dispatch_mode&#39;   => 3,
        &#39;log_file&#39; => &#39;swoole.log&#39;,
        ));
  //增加个监听端口
    $udpworker =  $this->_serv->listen("127.0.0.1", 6553, SWOOLE_SOCK_UDP);
    $udpworker->on(&#39;Packet&#39;, function ($serv, $data, $addr) {
            $data = json_decode($data, true);
            if(!empty($data)){
                //你的业务逻辑
            }
        });
        $this->_serv->on(&#39;open&#39;, array($this, &#39;onStart&#39;));
        $this->_serv->on(&#39;message&#39;, array($this, &#39;onMessage&#39;));
        $this->_serv->on(&#39;close&#39;, array($this, &#39;onClose&#39;));
        $this->_serv->start();
    }
   
    public function onStart($serv, $request)
    {
        echo "server: connect success with fd {$request->fd}\n";
    }
    //format:&#39;{"school_class_id":"1","school_id":"2"}&#39;
    public function onMessage($serv, $frame)
    {
    /**start*你的业务逻辑***/
    }
    public function onClose($serv, $fd)
    {
        echo "client {$fd} closed\n";
    }
}
?>
Copy after login

Principle:

Create first The websocket server object listens to the 0.0.0.0:6552 port, and then uses the service object to listen to the UDP 6553 port. Client messages are sent to interface 6553 and then sent to the user via port 6552.

For more related php knowledge, please visit php tutorial!

The above is the detailed content of The principle and detailed explanation of PHP's real-time push of system messages to the client. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:cnblogs.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!