PHP code example of concept-labs / config

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

    

concept-labs / config example snippets


use Concept\Config\Config;
$config = new Config([
    'context' => ['root' => '/app'],
    'path' => [
        'to' => '${root}/var/.cache'
    ]
]);
echo $config->get('path.to'); // Outputs: '/app/var/.cache'

use Concept\Config\Plugin\VarPlugin;

$config->addPlugin(new VarPlugin());
$config->set('user', '${root}/users');
echo $config->get('user'); // Outputs: '/app/users'

// Load from a JSON file
$config->load('/path/to/config.json');
// Load and merge with existing data
$config->load(['new' => 'data'], true);
// Compile and export for performance
$config->export('/path/to/compiled.json');
// Load compiled configuration
$config->load('/path/to/compiled.json', false); // Replace existing data

if ($config->has('path')) {
    echo "Key 'path' exists!";
}
//Note: The has() method checks keys in memory ($data or $compiledData) and does not read file contents.