I’ve read people have talked about local configuration files in Zend Framework.
As of Zend Framework 1.10, multiple configuration files is supported by Zend_Application. Here is the right (standardized) approach:
$application = new Zend_Application( APPLICATION_ENV, array( 'config' => array( APPLICATION_PATH . '/configs/application.ini', APPLICATION_PATH . '/configs/local.ini' ) ) );
I hope this small tip becomes spread instead of alternative approaches, that most of the times overload your Zend application.
