* require_once 'Config.php'; * $ini = new Config(); * $conf =& $ini->parseConfig('/path/to/config.ini', 'inicommented'); * * // Will return the value found at : * // [Database] * // host=localhost * echo $conf->directiveContent(array('Database', 'host'))); * * // Will return the value found at : * // date="dec-2004" * echo $conf->directiveContent('date'); * *