Zend_ConfigImplements interfaces:
Located in /Zend/Config.php (line 35)
| Class | Description |
|---|---|
Zend_Config_Ini
|
|
Zend_Config_Xml
|
boolean
$_allowModifications
(line 42)
Whether in-memory modifications to configuration data are allowed
integer
$_count
(line 56)
Number of elements in configuration data
array
$_data
(line 63)
Contains array of configuration data
array
$_extends
= array() (line 81)
This is used to track section inheritance. The keys are names of sections that extend other sections, and the values are the extended sections.
integer
$_index
(line 49)
Iteration index
mixed
$_loadedSection
(line 73)
Contains which config file sections were loaded. This is null if all sections were loaded, a string name if one section is loaded and an array of string names if multiple sections were loaded.
Constructor __construct (line 95)
Zend_Config provides a property based interface to an array. The data are read-only unless $allowModifications is set to true on construction.
Zend_Config also implements Countable and Iterator to facilitate easy access to the data.
areAllSectionsLoaded (line 267)
Returns true if all sections were loaded
asArray (line 168)
Return an associative array of the stored data.
count (line 197)
Defined by Countable interface
current (line 207)
Defined by Iterator interface
getSectionName (line 257)
Returns the section name(s) loaded.
key (line 217)
Defined by Iterator interface
next (line 226)
Defined by Iterator interface
rewind (line 236)
Defined by Iterator interface
valid (line 247)
Defined by Iterator interface
_assertValidExtend (line 280)
Throws an exception if $extendingSection may not extend $extendedSection, and tracks the section extension if it is valid.
_isValidKeyName (line 121)
Ensure that the key is a valid PHP property name
__get (line 132)
Magic function so that $obj->value will work.
__isset (line 187)
Support isset() overloading on PHP 5.1
__set (line 149)
Only allow setting of a property if $allowModifications was set to true on construction. Otherwise, throw an exception.
Documentation generated on Wed, 21 Feb 2007 11:46:21 -0800 by phpDocumentor 1.3.1