PHP code example of mleczek / config
1. Go to this page and download the library: Download mleczek/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/ */
mleczek / config example snippets
// config/services.php
return [
'database' => [
'host' => 'localhost',
'port' => 3306,
],
];
use \Mleczek\Config\Providers\LocalConfig;
$config = new LocalConfig(__DIR__ .'/config');
$has = $config->has('services.database'); // true
$host = $config->get('services.database.host'); // 'localhost'
$user = $config->getOrDefault('services.database.user', 'root'); // 'root'