Answers for "how to put php into env variables"

PHP
2

php set environment variable

putenv('NAME=VALUE');

// NAME may contain whitespaces ->
putenv('NAME=VALUE') 
// is not equivalent to 
putenv('NAME = VALUE')
Posted by: Guest on July-07-2020

Code answers related to "how to put php into env variables"

Browse Popular Code Answers by Language