如何在Laravel 5+中获取客户端IP地址
2022-08-30 06:35:21
我正在尝试在Laravel中获取客户端的IP地址。
使用 PHP 可以很容易地获取客户端的 IP。它在核心PHP中工作正常,但是当我在Laravel中使用相同的东西时,它会返回服务器IP而不是访问者的IP。$_SERVER["REMOTE_ADDR"]
我正在尝试在Laravel中获取客户端的IP地址。
使用 PHP 可以很容易地获取客户端的 IP。它在核心PHP中工作正常,但是当我在Laravel中使用相同的东西时,它会返回服务器IP而不是访问者的IP。$_SERVER["REMOTE_ADDR"]
看看Laravel API:
Request::ip();
在内部,它使用 Symfony 请求对象中的方法:getClientIps
public function getClientIps()
{
$clientIps = array();
$ip = $this->server->get('REMOTE_ADDR');
if (!$this->isFromTrustedProxy()) {
return array($ip);
}
if (self::$trustedHeaders[self::HEADER_FORWARDED] && $this->headers->has(self::$trustedHeaders[self::HEADER_FORWARDED])) {
$forwardedHeader = $this->headers->get(self::$trustedHeaders[self::HEADER_FORWARDED]);
preg_match_all('{(for)=("?\[?)([a-z0-9\.:_\-/]*)}', $forwardedHeader, $matches);
$clientIps = $matches[3];
} elseif (self::$trustedHeaders[self::HEADER_CLIENT_IP] && $this->headers->has(self::$trustedHeaders[self::HEADER_CLIENT_IP])) {
$clientIps = array_map('trim', explode(',', $this->headers->get(self::$trustedHeaders[self::HEADER_CLIENT_IP])));
}
$clientIps[] = $ip; // Complete the IP chain with the IP the request actually came from
$ip = $clientIps[0]; // Fallback to this when the client IP falls into the range of trusted proxies
foreach ($clientIps as $key => $clientIp) {
// Remove port (unfortunately, it does happen)
if (preg_match('{((?:\d+\.){3}\d+)\:\d+}', $clientIp, $match)) {
$clientIps[$key] = $clientIp = $match[1];
}
if (IpUtils::checkIp($clientIp, self::$trustedProxies)) {
unset($clientIps[$key]);
}
}
// Now the IP chain contains only untrusted proxies and the client IP
return $clientIps ? array_reverse($clientIps) : array($ip);
}
如果您使用的是负载均衡器,Laravel's 始终返回均衡器的 IP:\Request::ip()
echo $request->ip();
// server ip
echo \Request::ip();
// server ip
echo \request()->ip();
// server ip
echo $this->getIp(); //see the method below
// clent ip
此自定义方法返回真正的客户端 ip:
public function getIp(){
foreach (array('HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED', 'HTTP_X_CLUSTER_CLIENT_IP', 'HTTP_FORWARDED_FOR', 'HTTP_FORWARDED', 'REMOTE_ADDR') as $key){
if (array_key_exists($key, $_SERVER) === true){
foreach (explode(',', $_SERVER[$key]) as $ip){
$ip = trim($ip); // just to be safe
if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE) !== false){
return $ip;
}
}
}
}
return request()->ip(); // it will return server ip when no client ip found
}
除此之外,我建议您非常小心使用Laravel的节流中间件:它也使用Laravel的,因此您的所有访问者都将被识别为同一用户,并且您将很快达到油门限制。我现场体验过这个,这导致了大问题。Request::ip()
要解决此问题,请执行以下操作:
照亮\http\请求.php
public function ip()
{
//return $this->getClientIp(); //original method
return $this->getIp(); // the above method
}
现在还可以使用 ,这应该返回生产中的真实 IP。Request::ip()