Read the contents of an INI file into a two-dimensional array.
function readFile()
Serializes the INI file into a string.
function getFile()
Write the INI file back to the disk.
function writeFile( $file = false )
Get a value from the INI file.
function value( $sec, $var = false, $default = false )
Determine if a particular key has been set.
function valueIsSet( $sec, $var = false )
Sets a value for a key.
function setValue ( $sec, $var, $val = false )
Returns the given section as an array.
function getSection( $sec )
Gets a list of the section names available in the file.
function getSectionNames()
Merge another INI file into the current one.
function merge( $file )