Yo lo que hago es algo así en el Bootstrap:
Código php:
Ver originalprotected function _initConfiguration() {
$config = new Zend_Config_Ini(
APPLICATION_PATH . '/configs/config.ini',
APPLICATION_ENV
);
return $config;
}
Luego en el Controller hago algo así:
Código php:
Ver original$bootstrap = $this->getInvokeArg('bootstrap');
$config = $bootstrap->getResource('configuration')->toArray();
Saludos.