vote up 0 vote down star

Hi I've compiled my own PHP / apache setup on our dev box at work. However the $_ENV['SERVER_Name']; isn't showing anything. Why is this?

flag

67% accept rate

5 Answers

vote up 1 vote down check

And for your question of where they are stored:

Not all at the same place, some come from the system, some come from your Apache configuration, some from your PHP configuration, ...

But you can set your own ENV vars by adding:

SetEnv MY_ENVVAR value

in your httpd.conf

link|flag
vote up 0 vote down

Yeah I know sorry I meant $_ENV['SERVER_NAME'];

So are they provided by the shell environment. So in my case it's bash. so I need to set a system wide enviroment variable called SERVER_NAME right?

link|flag
vote up 2 vote down

Dump the entire contents of the array and see for yourself, it's likely an issue with the capitalization of your key

print_r($_ENV);
var_dump($_ENV);
link|flag
vote up 0 vote down

You can list all the $_ENV, $_SERVER, $_REQUEST variables etc. with

<?php phpinfo(); ?>

As karim79 says, the problem right now is probably that you're using mixed case, but this will help you debug in future.

You can also say

<?php print_r($_ENV); ?>

to get just the contents of $_ENV.

link|flag
vote up 4 vote down

Array keys are case sensitive. Try:

echo $_ENV['SERVER_NAME'];

Failing that, you could always try:

echo $_SERVER['SERVER_NAME'];

The manual says ('SERVER_NAME'):

The name of the server host under which the current script is executing. If the script is running on a virtual host, this will be the value defined for that virtual host.

link|flag

Your Answer

Get an OpenID
or

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