You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dikki DotEnv - Just Another DotEnv Component for PHP
A simple dotenv component for PHP.
Usage
$dotenv = newDikki\DotEnv\DotEnv(__DIR__, '.env'); // directory where .env is present; second argument is optional$dotenv->load(); // load the vars from .env fileecho$_ENV['DEBUG']; // or getenv('DEBUG')