I like how this works in Zend Framework. I can know which environment I'm currently using by checking APPLICATION_ENV constant in my controller.
<VirtualHost *:80>
#ServerName
#DocumentRoot
SetEnv APPLICATION_ENV "development"
# Directory
</VirtualHost>
But unfortunately I can't use ZF in my current project. How can I check this environment variable in my PHP code?
SetEnv
defines an environment variable.Once this has been set (either in your Apache's configuration, or at the system level), you can read its value using the
getenv
function :For instance, if you use this in your
.htaccess
file :You can use this portion of PHP code :
And you'll get :
Since SetEnv set's the value to Apache's environment, you can get it with
apache_getenv
— Get an Apache subprocess_env variableor just
getenv
— Gets the value of an environment variableIf you look at
public/index.php
in a ZF project, you will see ZF usesgetenv
:An often use alternative would be to read the Hostname from PHP and define the constant accordingly:
This way, you don't have to rely on the environment setting at all.
I had the same problem then I solved it. The way to solve the problem is to declare all variables in an apache init script.
I'm using apache on centos and the init script is located in
/etc/init.d/httpd
Add this code, but change it to meet your specific case.
This solved my problem. I hope this helps.
you can also access it from the
$_SERVER
variable.