Closed g105b closed 8 years ago
Optionally set a "namespace" for all environment variables to exist within.
With the ini line name = Berty, setting the namespace with $config->setNamespace("something"); should allow this: $name = getenv("something_name").
name = Berty
$config->setNamespace("something");
$name = getenv("something_name")
Call this prefix, not namespace.
prefix
namespace
Optionally set a "namespace" for all environment variables to exist within.
With the ini line
name = Berty
, setting the namespace with$config->setNamespace("something");
should allow this:$name = getenv("something_name")
.