swoole创建多人多房间聊天室二

这次写的不依赖框架,不用nginx配置,只是依靠swoole的http_server和websocket,也是用的多端口监听,一边实现了web端的访问,一边实现了socket的发送;

 

    文档在这里,可以多认真的读一下:https://wiki.swoole.com/wiki/page/525.html

好的,直接上码;

 

http.php

<?php

namespace app\common;
require_once 'Predis.php';
require_once 'Task.php';
/**
*    socket面向对象的编译
*/
class Http
{
    CONST HOST='0.0.0.0';
    CONST PORT='9501';
    public $ws=null;
    public $http_server=null;

    public function __construct()
    {   
        $this->ws=new \swoole_websocket_server(self::HOST,self::PORT);
        $this->ws->set([
            //心跳检测
            // 'heartbeat_check_interval' => 5,
            // 'heartbeat_idle_time' => 10,
        ]);
        //监听新端口
        $this->http_server=$this->ws->listen("0.0.0.0", 9502, SWOOLE_SOCK_TCP);
        //开启http模式
        $this->http_server->set([
            'open_http_protocol' => true,
        ]);

        $this->ws->on("start", [$this, 'onStart']);
        $this->http_server->on("request", [$this, 'onRequest']);
        $this->ws->on('message',[$this,'onmessage']);
        $this->ws->on('close',[$this,&#
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值