Located in /Zend/Config/Ini.php (line 35)
Load the section $section from the config file $filename into an associative array.
If any keys with $section are called "extends", then the section pointed to by the "extends" is then included into the properties. Note that the keys in $section will override any keys of the same name in the sections that have been included via "extends".
If any key includes a ".", then this will act as a separator to create a sub-property.
example ini file: [all] db.connection = database hostname = live
[staging] extends = all hostname = staging
after calling $data = Zend_Config_Ini::load($file, 'staging'); then $data['hostname'] = staging $data['db']['connection'] = database
Helper function to process each element in the section and handle the "extends" inheritance keyword. Passes control to _processKey() to handle the "dot" sub-property syntax in each key.
Assign the key's value to the property list. Handle the "dot" notation for sub-properties by passing control to processLevelsInKey().
Helper function to handle the "dot" namespace syntax in the key.
Uses "." as the separator.
Documentation generated on Fri, 30 Jun 2006 11:20:58 -0500 by phpDocumentor 1.3.0RC6