Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to find a user's IP address when he/she enters my page. How do I programmatically do that?

share|improve this question

8 Answers

up vote 59 down vote accepted

$_SERVER['REMOTE_ADDR'] may not actually contain real client IP addresses, as it will give you a proxy address for clients connected through a proxy, for example. That may well be what you really want, though, depending what your doing with the IPs. Someone's private RFC1918 address may not do you any good if you're say, trying to see where your traffic is originating from, or remembering what IP the user last connected from, where the public IP of the proxy or NAT gateway might be the more appropriate to store.

I found this:

function getRealIpAddr()
{
  if (!empty($_SERVER['HTTP_CLIENT_IP']))
  //check ip from share internet
  {
    $ip=$_SERVER['HTTP_CLIENT_IP'];
  }
  elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
  //to check ip is pass from proxy
  {
    $ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
  }
  else
  {
    $ip=$_SERVER['REMOTE_ADDR'];
  }
  return $ip;
}

Here: http://roshanbh.com.np/2007/12/getting-real-ip-address-in-php.html

You can't really trust the HTTP_ envvars, but what can you trust on the 'net?

share|improve this answer
Since my own question has been closed (stackoverflow.com/questions/848091/…) how can you get the above code to always find the IP address. Using this code, it will fall down to $_SERVER['REMOTE_ADDR'] and get a value of either blank or unknown in over 20% of cases. – Ryaner May 11 '09 at 13:58
2  
Actually $_SERVER['REMOTE_ADDR'] is far more reliable as at least it points to an actual IP address. It may be a proxy server, then then at least you can still block the proxy. However HTTP_X_FORWARDED_FOR is just a header that can be easily set by anybody. You should store both, but if making a choice choose REMOTE_ADDR. Oh and HTTP_CLIENT_IP isn't even returned by Apache on my tests. I can't be sure, but I think it's a legacy header. – Gerry Feb 20 '11 at 14:33
1  
Unfortunately, in working with a myriad of Operating Systems, web-server products, load-balancers, firewalls, NAT, & Source NAT variables, the one thing I can tell you is that there is no guarantee that what you do to collect the actual IP on any particular combination of the above will work on any other particular combination of products. The example I put forth is only an example that tries to accomodate the most common headers that might have an IP in them. Each scenario could easily require a unique solution to collect an IP. – Tim Kennedy Feb 22 '11 at 16:19

It should be contained in the $_SERVER['REMOTE_ADDR'] variable.

share|improve this answer

I always forget and do a:

var_dump($_SERVER);

and figure it out that way. Handy way to remember if you forget the exact key name.

share|improve this answer

$_SERVER['REMOTE_ADDR'];

share|improve this answer
echo "<PRE>" . print_r($_SERVER, true) . "</PRE>";

Is useful because it prints out the data in a nice pre-formatted manner which is easy to read on the browser.

share|improve this answer

I like this codesnippet:

function getClientIP() {

if (isset($_SERVER)) {

    if (isset($_SERVER["HTTP_X_FORWARDED_FOR"]))
        return $_SERVER["HTTP_X_FORWARDED_FOR"];

    if (isset($_SERVER["HTTP_CLIENT_IP"]))
        return $_SERVER["HTTP_CLIENT_IP"];

    return $_SERVER["REMOTE_ADDR"];
}

if (getenv('HTTP_X_FORWARDED_FOR'))
    return getenv('HTTP_X_FORWARDED_FOR');

if (getenv('HTTP_CLIENT_IP'))
    return getenv('HTTP_CLIENT_IP');

return getenv('REMOTE_ADDR');
}
share|improve this answer
i mean what's the point.. doesn't getenv give you the same thing as $_SERVER ? – Pacerier Oct 2 '11 at 2:23
function getRealIpAddress() {
  return !empty($_SERVER['HTTP_CLIENT_IP']) ?
          $_SERVER['HTTP_CLIENT_IP'] : (!empty($_SERVER['HTTP_X_FORWARDED_FOR']) ?
                  $_SERVER['HTTP_X_FORWARDED_FOR'] : (!empty($_SERVER['REMOTE_ADDR']) ?
                          $_SERVER['REMOTE_ADDR'] : null));
}

Safe to use in CLI mode(null returned).

share|improve this answer

$_SERVER['HTTP_X_FORWARDED_FOR'] may return multiple IPs. So read the following thread:

$_SERVER['HTTP_X_FORWARDED_FOR'] returns multiple IPs, what to do?

share|improve this answer
Welcome to Stack Overflow! Please note that you should post the useful points of an answer here, on this site, or your post risks being deleted as "Not an Answer". You may still include the link if you wish, but only as a 'reference'. The answer should stand on its own without needing the link. – Andrew Barber Feb 4 at 20:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.