Documentation

Table Of Contents

Previous topic

< Class Phalcon\Config\Adapter\Ini

Next topic

Class Phalcon\Config\Adapter\Php >

This Page

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:

  <?php

   {"phalcon":{"baseuri":"\/phalcon\/"},"models":{"metadata":"memory"}}

You can read it as follows:
<?php

 $config = new Phalcon\Config\Adapter\Json("path/config.json");
 echo $config->phalcon->baseuri;
 echo $config->models->metadata;

Methods

public __construct (unknown $filePath)

Phalcon\Config\Adapter\Json constructor

public offsetExists (unknown $index) inherited from Phalcon\Config

Allows to check whether an attribute is defined using the array-syntax

<?php

 var_dump(isset($config['database']));

public get (unknown $index, [unknown $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

<?php

 echo $config->get('controllersDir', '../app/controllers/');

public offsetGet (unknown $index) inherited from Phalcon\Config

Gets an attribute using the array-syntax

<?php

 print_r($config['database']);

public offsetSet (unknown $index, unknown $value) inherited from Phalcon\Config

Sets an attribute using the array-syntax

<?php

 $config['database'] = array('type' => 'Sqlite');

public offsetUnset (unknown $index) inherited from Phalcon\Config

Unsets an attribute using the array-syntax

<?php

 unset($config['database']);

public this merged config merge (unknown $config) inherited from Phalcon\Config

Merges a configuration into the current one

<?php

 $appConfig = new \Phalcon\Config(array('database' => array('host' => 'localhost')));
 $globalConfig->merge($config2);

public toArray () inherited from Phalcon\Config

Converts recursively the object to an array

<?php

print_r($config->toArray());

public count () inherited from Phalcon\Config

Returns the count of properties set in the config

<?php

 print count($config);

or

<?php

 print $config->count();

public static __set_state (unknown $data) inherited from Phalcon\Config

Restores the state of a Phalcon\Config object

private Config merged config _merge (unknown $config, [unknown $instance]) inherited from Phalcon\Config

Helper method for merge configs (forwarding nested config instance)

Follow along: