不使用Nginx和Apache的情況下
@木衣
?
看文檔+代碼
?
/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? ? ?}