https://www.workerman.net/doc/workerman/worker/construct.html
tcp: 例如`tcp://0.0.0.0:8686`
udp: 例如`udp://0.0.0.0:8686`
unix: 例如`unix:///tmp/my_file``(需要Workerman>=3.2.7)`
http: 例如`http://0.0.0.0:80`
websocket: 例如`websocket://0.0.0.0:8686`
text: 例如`text://0.0.0.0:8686``(text是Workerman内置的文本协议,兼容telnet,详情参见附录Text协议部分)`
链接方法:
~~~
require_once 'workerman/Autoloader.php';
use Workerman\Worker;
$ws= new Worker('websocket://0.0.0.0:2222');
//$ws= new Worker('udp://0.0.0.0:8686');
//$ws= new Worker('http://0.0.0.0:80');
//$ws= new Worker('text://0.0.0.0:8686');
//$ws= new Worker('text://0.0.0.0:8686');
$ws->onMessage=function ($connection,$data){
$connection->send('hello websocket---'.$data);
};
Worker::runAll();
~~~
- 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里使用