## 官方文档:
https://www.workerman.net/doc/workerman/tcp-connection/get-remote-ip.html
# 代码案例
~~~
<?php
require_once 'workerman/Autoloader.php';
use Workerman\Worker;
$worker=new Worker('text://0.0.0.0:8883');
$worker->onConnect = function($connection)
{
echo "new connection from address ". $connection->getRemoteIp() . ":". $connection->getRemotePort() ."\n"; //获取端口与IP
};
Worker::runAll();
~~~
![](https://img.kancloud.cn/77/ab/77abb12536cd45f7eaad286c54b6c745_1341x280.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里使用