PHP code example of monomelodies / kingconf

1. Go to this page and download the library: Download monomelodies/kingconf 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/ */

    

monomelodies / kingconf example snippets




use Monomelodies\Kingconf\Config;

$config = new Config('/path/to/json', '/path/to/ini');



echo $config['foo']; // (string)"bar"



use Monomelodies\Kingconf\Config;
use Monomelodies\Kingconf\Exception;

try {
    $config = new Config($some_file_we_dont_trust);
} catch (Exception $e) {
    echo "Config invalid!!!1";
}