getRemotePort接口说明
int Connection::getRemotePort()
获得该连接的客户端端口。
getRemotePort接口范例
use Workerman\Worker; use Workerman\Connection\TcpConnection; require_once __DIR__ . '/vendor/autoload.php'; $worker = new Worker('websocket://0.0.0.0:8484'); $worker->onConnect = function(TcpConnection $connection) { echo "new connection from address " . $connection->getRemoteIp() . ":". $connection->getRemotePort() ."\n"; }; // 运行worker Worker::runAll();