不使用Nginx和Apache的情况下
难道不是 $connection->getRemoteIp(); ?
@木衣 看文档+代码 /Workerman/Connection/UdpConnection.php L79左右有的。
/** 75 * Get remote IP. 76 * 77 * @return string 78 */ 79 public function getRemoteIp() 80 { 81 $pos = strrpos($this->_remoteAddress, ':'); 82 if ($pos) { 83 return trim(substr($this->_remoteAddress, 0, $pos), '[]'); 84 } 85 return ''; 86 }
难道不是 $connection->getRemoteIp(); ?
@木衣
看文档+代码
/Workerman/Connection/UdpConnection.php L79左右有的。