首頁 > php教程 > PHP开发 > 使用swoole擴展php websocket範例

使用swoole擴展php websocket範例

高洛峰
發布: 2016-12-23 18:00:49
原創
1792 人瀏覽過

<?php
define(&#39;DEBUG&#39;, &#39;on&#39;);
define("WEBPATH", str_replace("\\","/", __DIR__));
require __DIR__ . &#39;/../libs/lib_config.php&#39;;
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.&#39; = &#39;.$ws[&#39;message&#39;]);
        $this->send($client_id, "Server: ".$ws[&#39;message&#39;]);
  //$this->broadcast($client_id, $ws[&#39;message&#39;]);
    }
    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(&#39;0.0.0.0&#39;, 9503);
$server->setProtocol($AppSvr);
//$server->daemonize(); //作为守护进程
$server->run(array(&#39;worker_num&#39; =>4));
登入後複製


更多使用swoole扩展php websocket示例相关文章请关注PHP中文网!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板