extends class Phalcon\Config
implements Countable, ArrayAccess
Reads YAML files and converts them to Phalcon\Config objects.
Given the following configuration file:
phalcon: baseuri: /phalcon/ controllersDir: !approot /app/controllers/ models: metadata: memory
You can read it as follows:
define( "APPROOT", dirname(__DIR__) ); $config = new \Phalcon\Config\Adapter\Yaml( "path/config.yaml", [ "!approot" => function($value) { return APPROOT . $value; }, ] ); echo $config->phalcon->controllersDir; echo $config->phalcon->baseuri; echo $config->models->metadata;
Phalcon\Config\Adapter\Yaml constructor
Allows to check whether an attribute is defined using the array-syntax
var_dump( isset($config["database"]) );
Gets an attribute from the configuration, if the attribute isn’t defined returns null If the value is exactly null or is not defined the default value will be used instead
echo $config->get("controllersDir", "../app/controllers/");
Gets an attribute using the array-syntax
print_r( $config["database"] );
Sets an attribute using the array-syntax
$config["database"] = [ "type" => "Sqlite", ];
Unsets an attribute using the array-syntax
unset($config["database"]);
Merges a configuration into the current one
$appConfig = new \Phalcon\Config( [ "database" => [ "host" => "localhost", ], ] ); $globalConfig->merge($appConfig);
Converts recursively the object to an array
print_r( $config->toArray() );
Returns the count of properties set in the config
print count($config);
or
print $config->count();
Restores the state of a Phalcon\Config object
Helper method for merge configs (forwarding nested config instance)
© 2011–2017 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/latest/api/Phalcon_Config_Adapter_Yaml.html