1. Go to this page and download the library: Download xety/configurator 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/ */
xety / configurator example snippets
namespace App;
use Xety\Configurator\Configurator;
class MyClass extends Configurator
{
}
class MyClass extends Configurator
{
protected $defaultConfig = [
'key' => 'value',
//etc
];
public function __construct()
{
$this->setConfig($defaultConfig);
}
}
public setConfig (array $values)
public getConfig (void)
public flushConfig (string ...$filter)
$this->flushConfig('key1', 'key2', 'key3');
public mergeConfig (array $values, bool $invert = false)