PHP code example of gracious / magento-env-config
1. Go to this page and download the library: Download gracious/magento-env-config 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/ */
gracious / magento-env-config example snippets
xml
...
<default_setup>
<connection>
<host>$MAGE_DB_HOST</host>
<username>$MAGE_DB_USER</username>
<password>$MAGE_DB_PASS</password>
<dbname>$MAGE_DB_NAME</dbname>
<initStatements><![CDATA[SET NAMES utf8]]></initStatements>
<model><![CDATA[mysql4]]></model>
<type><![CDATA[pdo_mysql]]></type>
<pdoType></pdoType>
<active>1</active>
</connection>
...