~~~
require_once 'workerman/Autoloader.php';
use Workerman\Worker;
$ws= new Worker('websocket://0.0.0.0:2222');
$ws->onMessage=function ($connection,$data){
$connection->send('hello websocket---'.$data);
};
Worker::runAll();
~~~
## 启动就可以
```
php websocket.php start
```
![](https://img.kancloud.cn/e2/01/e2014f49011ad4101b407d0dc254865f_1653x716.png)
- WebSocket协议
- 构造函数(6种协议)
- count(进程设置)
- name(链接名称)
- $daemonize(守护进程设置)
- logFile(日志路径)
- stdoutFile(守护进程记录文件)
- connections(获取链接数组的)
- worker的回调属性
- worker类的方法
- Connection类的方法
- getRemotePort获取端口方法
- getRemoteIp获取IP地址
- close 安全关闭连接
- 定时器
- Channel分布式通信组件
- 心跳检测程序
- liunx优化配置
- thinkphp5.1使用worerman
- thinkphp5.1中用Channel实现广播通信
- thinkphp5.1中使用定时器
- thinkphp5.1使用TcpConnection类
- Gateway类使用
- BusinessWorker使用
- Register类的使用
- Events类使用(业务逻辑层)
- Lib\Gateway 接口(经常用)
- webman中间件stomp
- Gateway在thinkphp5.1里使用