vote up 0 vote down star

What is the better way of getting the IP address in PHP:

getenv('REMOTE_ADDR');

or,

$_SERVER['REMOTE_ADDR'];

please tell me the difference, if any, between the two.

flag

27% accept rate
you should accept an answer... – johnnietheblack Nov 17 at 19:41

5 Answers

vote up 1 vote down check

getenv() can be used to access any environment variables (PHP simply registers REMOTE_ADDR as an environment variable for the script), while with $_SERVER you obviously only access the contents of the $_SERVER superglobal.

The common approach is to use $_SERVER for this, although it doesn't really make a difference functionality-wise.

link|flag
vote up 9 vote down

$_SERVER is a built in PHP variable, while getenv() ask the environment (probably Apache/IIS) for values.

The best way to get the IP is;

$ip = (!empty($_SERVER['REMOTE_ADDR'])) ? $_SERVER['REMOTE_ADDR'] : getenv('REMOTE_ADDR');

But I doubt there's any difference between these two variables... Hm.

link|flag
vote up 1 vote down

It would probably be better to use $_SERVER['REMOTE_ADDR']; to prevent incompatibilities between servers.

link|flag
vote up 1 vote down

There's no differences between the tho calls. As you can see PHP manual use both method in the same example. There are some cases where you don't have global variables like $_SERVER enabled and you are forced to use getenv(). In my experience i've never seen a server with global variables disabled.

link|flag
vote up 0 vote down

With $_SERVER['REMOTE_ADDR'] you read directly the global variable by accessing the $_SERVER[] array that is set up when occurs a remote request:

*$SERVER is an array containing information such as headers, paths, and script locations. The entries in this array are created by the web server. There is no guarantee that every web server will provide any of these; servers may omit some, or provide others not listed here. That said, a large number of these variables are accounted for in the » CGI 1.1 specification, so you should be able to expect those.

The getenv() function access to any environment variable to get the related value!

In both cases you access the same value and the same variable ... but $_SERVER is a build in PHP superglobal variable, instead getenv() get the value of a variable defined in the current environment!

I think that in this case the use of the superglobal variable is the best way to get the IP address!

link|flag

Your Answer

Get an OpenID
or

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