vote up 1 vote down star

Hi, I'm looking for an alternave to the parse_ini_file() function in php. I want a simple way to store config settings, but want the flexibility to store unlimited levels of multiple arrays, special characters, etc. Any ideas?

flag

1 Answer

vote up 3 vote down check

Zend_Config_Ini would fit the bill nicely for this:

$config = new Zend_Config_Ini('/path/to/config.ini', 'staging');

echo $config->database->params->host; // prints "dev.example.com"

echo $config->database->params->dbname; // prints "dbname"

link|flag
thanks, that looks great – nandasunu Jul 8 at 8:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.