Method |
Description |
|
offsetExists ( string $offset ) : boolean |
Checks to see if a configuration setting is assigned a value. |
|
offsetGet ( string $offset ) : mixed |
Returns the value of a configuration setting. |
|
offsetSet ( string $offset, mixed $value ) : void |
Sets the value of a configuration setting. |
|
offsetUnset ( string $offset ) : void |
Removes the value set for a configuration setting. |
|
read ( string $file ) : Phergie_Config |
Includes a specified PHP configuration file and incorporates its
return value (which should be an associative array) into the current
configuration settings. |
|
readArray ( array $settings ) : Phergie_Config |
Merges an associative array of configuration setting values into the
current configuration settings. |
|
write ( ) : Phergie_Config |
Writes the values of the current configuration settings back to their
originating files. |
|