flexic / dotenv
Flexic component package
1.0.0
2019-02-21 17:39 UTC
Requires
- php: ^7.1.3
This package is auto-updated.
Last update: 2025-03-09 22:02:01 UTC
README
The DotEnv component defines an object-oriented layer for the loading of environment variables from .env files
Resources
Examples
$dot_env = new \Flexic\DotEnv\DotEnv(); $data = $dot_env->parseFile('/path/to/dot/env/file/'); $dot_env->populate($data); # Variables from .env file are now avaiable in $_ENV array