Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it safe to assume that $_SERVER['REMOTE_ADDR'] always returns a IPv4 address?

Thanks!

share|improve this question

1 Answer

up vote 17 down vote accepted

The REMOTE_ADDR key is set by the web server, not PHP. If the web server listens on v6 and the user connects that way, it'll be a v6 address

share|improve this answer
+1, Thanks! I'm gonna try to figure out how I can convert an IPv6 address to a number. – Alix Axel Apr 12 '10 at 3:06
3  
php.net/manual/en/function.inet-pton.php will convert v4 and v6 "string" addresses to their packed representation. – Marc B Apr 12 '10 at 21:54
@Michael IPv6 has many text representations. Is there a standard representation returned by $_SERVER['REMOTE_ADDR']? – Pacerier Jun 24 '12 at 14:27
@Pacerier You'll get the normal compacted IPv6 addresses or IPv4-mapped IPv6 addresses on a dual-stack system. – Michael Hampton Dec 3 '12 at 6:54

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.