Class **Phalcon\\Config\\Adapter\\Ini** ======================================= *extends* class :doc:`Phalcon\\Config ` *implements* Countable, ArrayAccess .. role:: raw-html(raw) :format: html :raw-html:`Source on GitHub` Reads ini files and converts them to Phalcon\\Config objects. Given the next configuration file: .. code-block:: ini phalcon->controllersDir; echo $config->database->username; Methods ------- public **__construct** (*unknown* $filePath) Phalcon\\Config\\Adapter\\Ini constructor protected **_parseIniString** (*unknown* $path, *unknown* $value) Build multidimensional array from string .. code-block:: php _parseIniString('path.hello.world', 'value for last key'); // result [ 'path' => [ 'hello' => [ 'world' => 'value for last key', ], ], ]; public **offsetExists** (*unknown* $index) inherited from Phalcon\\Config Allows to check whether an attribute is defined using the array-syntax .. code-block:: php get('controllersDir', '../app/controllers/'); public **offsetGet** (*unknown* $index) inherited from Phalcon\\Config Gets an attribute using the array-syntax .. code-block:: php 'Sqlite'); public **offsetUnset** (*unknown* $index) inherited from Phalcon\\Config Unsets an attribute using the array-syntax .. code-block:: php ` $config) inherited from Phalcon\\Config Merges a configuration into the current one .. code-block:: php array('host' => 'localhost'))); $globalConfig->merge($config2); public **toArray** () inherited from Phalcon\\Config Converts recursively the object to an array .. code-block:: php toArray()); public **count** () inherited from Phalcon\\Config Returns the count of properties set in the config .. code-block:: php count(); public static **__set_state** (*array* $data) inherited from Phalcon\\Config Restores the state of a Phalcon\\Config object final protected *Config merged config* **_merge** (*Config* $config, [*unknown* $instance]) inherited from Phalcon\\Config Helper method for merge configs (forwarding nested config instance)