连连跨境电商网站怎么做/网络推广平台软件
【实例简介】
PHP 游戏 房间匹配demo2
【实例截图】
【核心代码】
workerman_gameMatch2
└── workerman_gameMatch 2
├── Applications
│ └── Chat
│ ├── Events.php
│ ├── start_businessworker.php
│ ├── start_gateway.php
│ ├── start_register.php
│ ├── start_web.php
│ └── Web
│ ├── css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.min.css
│ │ └── style.css
│ ├── game.php
│ ├── img
│ │ └── workerman-todpole.png
│ ├── index.html
│ ├── js
│ │ ├── jquery.min.js
│ │ ├── swfobject.js
│ │ ├── util.js
│ │ └── web_socket.js
│ ├── match.php
│ ├── oldindex.html
│ └── swf
│ └── WebSocketMain.swf
├── start_for_win.bat
└── vendor
├── autoload.php
├── composer
│ ├── autoload_classmap.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ ├── ClassLoader.php
│ ├── installed.json
│ └── LICENSE
└── workerman
├── gateway-worker-for-win
│ ├── composer.json
│ ├── MIT-LICENSE.txt
│ ├── README.md
│ └── src
│ ├── BusinessWorker.php
│ ├── Gateway.php
│ ├── Lib
│ │ ├── Context.php
│ │ ├── DbConnection.php
│ │ ├── Db.php
│ │ └── Gateway.php
│ ├── Protocols
│ │ └── GatewayProtocol.php
│ └── Register.php
├── workerman-for-win
│ ├── Autoloader.php
│ ├── composer.json
│ ├── Connection
│ │ ├── AsyncTcpConnection.php
│ │ ├── AsyncUdpConnection.php
│ │ ├── ConnectionInterface.php
│ │ ├── TcpConnection.php
│ │ └── UdpConnection.php
│ ├── Events
│ │ ├── EventInterface.php
│ │ ├── Event.php
│ │ ├── Ev.php
│ │ ├── Libevent.php
│ │ ├── React
│ │ │ ├── ExtEventLoop.php
│ │ │ ├── LibEventLoop.php
│ │ │ └── StreamSelectLoop.php
│ │ └── Select.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
└── workerman.log
22 directories, 70 files