class Env (View source)

Properties

static protected bool $putenv

Indicates if the putenv adapter is enabled.

static protected FactoryInterface|null $factory

The environment factory instance.

static protected VariablesInterface|null $variables

The environment variables instance.

Methods

static void
enablePutenv()

Enable the putenv adapter.

static void
disablePutenv()

Disable the putenv adapter.

static FactoryInterface
getFactory()

Get the environment factory instance.

static VariablesInterface
getVariables()

Get the environment variables instance.

static mixed
get(string $key, mixed $default = null)

Gets the value of an environment variable.

Details

static void enablePutenv()

Enable the putenv adapter.

Return Value

void

static void disablePutenv()

Disable the putenv adapter.

Return Value

void

static FactoryInterface getFactory()

Get the environment factory instance.

Return Value

FactoryInterface

static VariablesInterface getVariables()

Get the environment variables instance.

Return Value

VariablesInterface

static mixed get(string $key, mixed $default = null)

Gets the value of an environment variable.

Parameters

string $key
mixed $default

Return Value

mixed