【例子介绍】Workerman 底层代码
【相关图片】
【源码结构】.
└── Workerman-master
├── Autoloader.php
├── Connection
│ ├── AsyncTcpConnection.php
│ ├── ConnectionInterface.php
│ ├── TcpConnection.php
│ └── UdpConnection.php
├── Events
│ ├── Ev.php
│ ├── Event.php
│ ├── EventInterface.php
│ ├── Libevent.php
│ ├── React
│ │ ├── ExtEventLoop.php
│ │ ├── LibEventLoop.php
│ │ └── StreamSelectLoop.php
│ ├── React.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
└── composer.json
7 directories, 28 files
评论