基本信息
源码名称:高性能支持分布式部署的聊天室系统(workerman-chat)
源码大小:2.46M
文件格式:.zip
开发语言:PHP
更新时间:2021-02-19
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

基于workerman的GatewayWorker框架开发的一款高性能支持分布式部署的聊天室系统。

GatewayWorker框架文档:http://www.workerman.net/gatewaydoc/

特性
使用websocket协议
多浏览器支持(浏览器支持html5或者flash任意一种即可)
多房间支持
私聊支持
掉线自动重连
微博图片自动解析
聊天内容支持微博表情
支持多服务器部署
业务逻辑全部在一个文件中,快速入门可以参考这个文件Applications/Chat/Event.php


workerman-chat

├── Applications
│   └── Chat
│       ├── Events.php
│       ├── Web
│       │   ├── css
│       │   │   ├── bootstrap-theme.css
│       │   │   ├── bootstrap-theme.min.css
│       │   │   ├── bootstrap.css
│       │   │   ├── bootstrap.min.css
│       │   │   ├── jquery-sinaEmotion-2.1.0.css
│       │   │   ├── jquery-sinaEmotion-2.1.0.min.css
│       │   │   └── style.css
│       │   ├── img
│       │   │   └── workerman-todpole.png
│       │   ├── index.php
│       │   ├── js
│       │   │   ├── jquery-sinaEmotion-2.1.0.js
│       │   │   ├── jquery-sinaEmotion-2.1.0.min.js
│       │   │   ├── jquery.min.js
│       │   │   ├── swfobject.js
│       │   │   └── web_socket.js
│       │   └── swf
│       │       └── WebSocketMain.swf
│       ├── start_businessworker.php
│       ├── start_gateway.php
│       ├── start_register.php
│       └── start_web.php
├── MIT-LICENSE.txt
├── README.md
├── composer.json
├── start.php
├── start_for_win.bat
└── vendor
    ├── autoload.php
    ├── composer
    │   ├── ClassLoader.php
    │   ├── LICENSE
    │   ├── autoload_classmap.php
    │   ├── autoload_namespaces.php
    │   ├── autoload_psr4.php
    │   ├── autoload_real.php
    │   ├── autoload_static.php
    │   └── installed.json
    └── workerman
        ├── gateway-worker
        │   ├── MIT-LICENSE.txt
        │   ├── README.md
        │   ├── composer.json
        │   └── src
        │       ├── BusinessWorker.php
        │       ├── Gateway.php
        │       ├── Lib
        │       │   ├── Context.php
        │       │   ├── Db.php
        │       │   ├── DbConnection.php
        │       │   └── Gateway.php
        │       ├── Protocols
        │       │   └── GatewayProtocol.php
        │       └── Register.php
        └── workerman
            ├── Autoloader.php
            ├── Connection
            │   ├── AsyncTcpConnection.php
            │   ├── AsyncUdpConnection.php
            │   ├── ConnectionInterface.php
            │   ├── TcpConnection.php
            │   └── UdpConnection.php
            ├── Events
            │   ├── Ev.php
            │   ├── Event.php
            │   ├── EventInterface.php
            │   ├── Libevent.php
            │   ├── React
            │   │   ├── Base.php
            │   │   ├── ExtEventLoop.php
            │   │   ├── ExtLibEventLoop.php
            │   │   └── StreamSelectLoop.php
            │   ├── Select.php
            │   └── Swoole.php
            ├── Lib
            │   ├── Constants.php
            │   └── Timer.php
            ├── MIT-LICENSE.txt
            ├── Protocols
            │   ├── Frame.php
            │   ├── Http
            │   │   └── mime.types
            │   ├── Http.php
            │   ├── ProtocolInterface.php
            │   ├── Text.php
            │   ├── Websocket.php
            │   └── Ws.php
            ├── README.md
            ├── WebServer.php
            ├── Worker.php
            └── composer.json

21 directories, 75 files