$variables
$variables : array
Key-value storage.
Dotenv class.
The Dotenv
package is a lightweight utility for managing environment variables in PHP
applications. It provides a simple and efficient way to load and access environment-specific
configuration from a .env
file. Unlike some well-known dotenv packages that are primarily
designed for development environments, this package is tailored for production use, ensuring
both speed and security by avoiding direct manipulation of $_ENV
or $_SERVER
by default.
load(string $directoryPath, string|null $fileName = null) : void
Load and parse .env file from a given directory.
string | $directoryPath | Holds the path to the directory containing the .env file. |
string|null | $fileName | Holds the filename to load. (Optional) |
get(string $key, mixed $default = null) : mixed
Get env variable.
string | $key | Holds the environment variable key to retrieve. |
mixed | $default | Holds the default value to return if the key is not set. Default is null. |
Returns the value of the environment variable, or the default value if the key is not found.
set(string|array$keys, mixed $value = null) : void
Set an environment variable.
string|array |
$keys | Holds a single variable key or an array of variable keys. |
mixed | $value | Holds the value for the key, or null if an array of keys is provided. |
if the values not are a string.