Class Phalcon\Config\Adapter\Json
extends class Phalcon\Config
implements Countable, ArrayAccess
Reads JSON files and converts them to Phalcon\Config objects. Given the following configuration file:
{"phalcon":{"baseuri":"\/phalcon\/"},"models":{"metadata":"memory"}} You can read it as follows:
$config = new Phalcon\Config\Adapter\Json("path/config.json"); echo $config->phalcon->baseuri; echo $config->models->metadata;
Methods
public __construct (string $filePath)
Phalcon\Config\Adapter\Json constructor
public boolean offsetExists (unknown $property) inherited from Phalcon\Config
Allows to check whether an attribute is defined using the array-syntax
var_dump(isset($config['database']));
public mixed get (string $index, [mixed $defaultValue]) inherited from Phalcon\Config
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/');
public string offsetGet (unknown $property) inherited from Phalcon\Config
Gets an attribute using the array-syntax
print_r($config['database']);
public offsetSet (unknown $property, mixed $value) inherited from Phalcon\Config
Sets an attribute using the array-syntax
$config['database'] = array('type' => 'Sqlite');
public offsetUnset (unknown $property) inherited from Phalcon\Config
Unsets an attribute using the array-syntax
unset($config['database']);
public merge (Phalcon\Config $config) inherited from Phalcon\Config
Merges a configuration into the current one
$appConfig = new Phalcon\Config(array('database' => array('host' => 'localhost'))); $globalConfig->merge($config2);
public array toArray () inherited from Phalcon\Config
Converts recursively the object to an array
print_r($config->toArray());
public count () inherited from Phalcon\Config
...
public __wakeup () inherited from Phalcon\Config
...
public static Phalcon\Config __set_state ([unknown $properties]) inherited from Phalcon\Config
Restores the state of a Phalcon\Config object
public __get (unknown $property) inherited from Phalcon\Config
...
public __set (unknown $property, unknown $value) inherited from Phalcon\Config
...
public __isset (unknown $property) inherited from Phalcon\Config
...
public __unset (unknown $property) inherited from Phalcon\Config
...
© 2011–2016 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/2.0.0/api/Phalcon_Config_Adapter_Json.html