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?
|
feedback
|
|
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:
in your | |||
|
feedback
|
|
Array keys are case sensitive. Try:
Failing that, you could always try:
The manual says ('SERVER_NAME'):
| ||||
|
feedback
|
|
Dump the entire contents of the array and see for yourself, it's likely an issue with the capitalization of your key
| |||
|
feedback
|
|
You can list all the $_ENV, $_SERVER, $_REQUEST variables etc. with
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
to get just the contents of $_ENV. | |||
|
feedback
|
|
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? | |||
|
feedback
|