putenv php code example
Example: php set environment variable
putenv('NAME=VALUE');
// NAME may contain whitespaces ->
putenv('NAME=VALUE')
// is not equivalent to
putenv('NAME = VALUE')
putenv('NAME=VALUE');
// NAME may contain whitespaces ->
putenv('NAME=VALUE')
// is not equivalent to
putenv('NAME = VALUE')