Questions tagged [real-ip]

16 questions
-1
votes
1 answer

IP address strange combination

Good day, I use the following code in PHP to obtain the IP address : $IPkey = array('HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'REMOTE_ADDR'); foreach($IPkey as $name){ if(isset($_SERVER[$name])) return $_SERVER[$name]; } Now…
Alex
  • 1,223
  • 1
  • 19
  • 31
1
2