【例子介绍】
基于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
评论