I would like to find a user's IP address when he/she enters my page. How do I programmatically do that?
|
feedback
|
|
$_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()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? | |||||||||||
feedback
|
|
I always forget and do a:
and figure it out that way. Handy way to remember if you forget the exact key name. | |||
|
feedback
|
Is useful because it prints out the data in a nice pre-formatted manner which is easy to read on the browser. | |||
|
feedback
|
|
I like this codesnippet:
| |||
feedback
|
Safe to use in CLI mode(null returned). | |||
|
feedback
|