PHP code example of roadie-xx / dotenv
1. Go to this page and download the library: Download roadie-xx/dotenv library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
roadie-xx / dotenv example snippets
use RoadieXX\DotEnv;
(new DotEnv(dirname(__DIR__) . '/.env'))->load();
echo getenv('APP_ENV');
// dev
echo getenv('DATABASE_DNS');
// mysql:host=localhost;dbname=test;