W3cubDocs

/Phalcon 2

Class Phalcon\Config

implements ArrayAccess, Countable

Phalcon\Config is designed to simplify the access to, and the use of, configuration data within applications. It provides a nested object property based user interface for accessing this configuration data within application code.

$config = new Phalcon\Config(array(
    "database" => array(
            "adapter" => "Mysql",
            "host" => "localhost",
            "username" => "scott",
            "password" => "cheetah",
            "dbname" => "test_db"
    ),
    "phalcon" => array(
            "controllersDir" => "../app/controllers/",
            "modelsDir" => "../app/models/",
            "viewsDir" => "../app/views/"
    )
 ));

Methods

public __construct ([array $arrayConfig])

Phalcon\Config constructor

public boolean offsetExists (unknown $property)

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

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

public mixed get (string $index, [mixed $defaultValue])

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)

Gets an attribute using the array-syntax

print_r($config['database']);

public offsetSet (unknown $property, mixed $value)

Sets an attribute using the array-syntax

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

public offsetUnset (unknown $property)

Unsets an attribute using the array-syntax

unset($config['database']);

public merge (Phalcon\Config $config)

Merges a configuration into the current one

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

public array toArray ()

Converts recursively the object to an array

print_r($config->toArray());

public count ()

...

public __wakeup ()

...

public static Phalcon\Config __set_state ([unknown $properties])

Restores the state of a Phalcon\Config object

public __get (unknown $property)

...

public __set (unknown $property, unknown $value)

...

public __isset (unknown $property)

...

public __unset (unknown $property)

...

© 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.html