Skip to content

Instantly share code, notes, and snippets.

@th3d0g
Created March 2, 2016 16:24
Show Gist options
  • Save th3d0g/eb958a5d1ed5695536ff to your computer and use it in GitHub Desktop.
Save th3d0g/eb958a5d1ed5695536ff to your computer and use it in GitHub Desktop.
DOT Env Loader PHP
// Load either live or dev .env
(new Dotenv\Dotenv(__DIR__.'/../', ( strpos( gethostname(), 'liveserver.com' ) !== false ) ? '.env.live' : '.env' ) )->load();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment