<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
volta-framework / component-configuration example snippets
declare(strict_types=1);
use Volta\Component\Configuration\Config
// i. Initialize a Config object with options stored in a *.php file
$conf = new Config(__DIR__ . '/config/example-config.php');
// ii. Initialize a Config object with options stored in a *.json file
$conf = new Config(__DIR__ . '/config/example-config.json');
// iii. Initialize a Config object with options stored in a json string
$conf = new Config(
'{
"databases": {
"default": {
"dsn": "sqlite:/path/to/sqlite/db/file.sqlite"
}
}
}'
);
// iv. Initialize a Config object with options stored in a php array
$conf = new Config(
[
'databases' => [
'default' => [
'dsn' => 'sqlite:/path/to/sqlite/db/file.sqlite'
]
]
]
);
// v. Adding or overwriting data after initialization can be done with the setOption() method
// and accepts all the formats described above. Previous data will be
// overwritten. (cascading) configuration
$conf->setOptions(__DIR__ . '/config/example-config.php')
declare(strict_types=1);
use Volta\Component\Configuration\Config
use Volta\Component\Configuration\Exception as ConfigException
use \PDO
$conf = new Config(__DIR__ . '/config/example-config.php');
// check if we have a database configuration, exit if not
if ($conf->hasOption('databases.default')) {
exit('No default database settings configured')
}
// The above functionality can also be accomplished by adding (a) value: null,
overWrite: true
);
// create PDO object and provide some defaults in case some options are not set
$pdo = new PDO(
dns: $conf['databases.default.dsn'],
username: $conf->getOption('databases.default.username', null),
password: $conf->getOption('databases.default.password'),
options: $conf->getOption(
'databases.default.options',
[
PDO::ATTR_EMULATE_PREPARES => false,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
PDO::ATTR_CASE => PDO::CASE_NATURAL
]
)
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.