PHP code example of jchook / dotenv-to-php
1. Go to this page and download the library: Download jchook/dotenv-to-php 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/ */
jchook / dotenv-to-php example snippets
// somewhere in index.php
$_SERVER['DB_USER']; // myapp
js
const childProcess = // ... other config here ...
plugins: [
// ... other plugins here ...
// Build PHP env
{apply: (compiler) => {
compiler.hooks.afterEnvironment.tap('DotEnvToPhp', (compilation) => {
childProcess.spawn('/path/to/dotenv-to-php', ['.env', '.env.php']);
});
}}
]
};