Q:

php get environment variable

$value = getenv("VARNAME");
// returns FALSE if VARNAME does not exist

$env_vars = getenv();
// if no name is specified, an associative array 
// with all environment variables is returned
1
putenv('NAME=VALUE');

// NAME may contain whitespaces ->
putenv('NAME=VALUE') 
// is not equivalent to 
putenv('NAME = VALUE') 
1

New to Communities?

Join the community