Skip to content

Instantly share code, notes, and snippets.

@AV4TAr
Created October 7, 2011 19:00
Show Gist options
  • Save AV4TAr/1271090 to your computer and use it in GitHub Desktop.
Save AV4TAr/1271090 to your computer and use it in GitHub Desktop.
Use Bootstrap to load configuration file in Zend_Application
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap {
//...
protected function _initConfig(){
$config_options = new Zend_Config($this->getOptions());
Zend_Registry::set('config', $config_options);
return $config_options;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment