Closed
Description
An environment variable with the string value value="false"
or value="true"
ends up as value ""
or "1
" in the environment.
Example:
...
<php>
<env name="foo" value="false"/>
<env name="bar" value="true"/>
</php>
...
In the environment, retrieved via getenv
:
foo
will have the value `` (i.e. empty)bar
will have the value1
(string)
I would expected that both values retain the string representation from the XML file, i.e. "false"
and "true"
.