在我的 Zend Framework 1 项目中,我试图向 Bootstrap.php 添加一个 init,它将加载一些配置值,然后在配置值不存在时捕获异常。在它捕获异常后,我希望它路由到错误控制器并显示它捕获的异常中的错误消息。
有没有办法在 Zend Framework 1 项目中的 Bootstrap.php 中引发异常,并让错误处理程序处理它,就像从控制器中引发异常一样?
更新: 感谢大卫·温劳布,我想出了以下解决方案。
引导程序.php:
protected function _initRegistry()
{
$options = $this->getOptions();
$fc = Zend_Controller_Front::getInstance();
$fc->registerPlugin(new Application_Plugin_RegistryHandler($options));
}
RegistryHandler.php:
use Application\Service\Config\Config;
use Application\Service\Config\MailConfig;
/**
* Handles the loading of objects and values into the registry, we use a plugin
* so exceptions can be thrown and caught with
* Zend_Controller_Plugin_ErrorHandler.
*/
class Application_Plugin_RegistryHandler extends Zend_Controller_Plugin_Abstract
{
/**
* @var array
*/
private $options;
/**
* @param array $options
*/
public function __construct($options)
{
$this->options = $options;
}
/**
* Load the config classes into registry on route startup
* so the error controller should be loaded and ready to catch exceptions.
*
* @param Zend_Controller_Request_Abstract $request
*/
public function routeStartup(Zend_Controller_Request_Abstract $request)
{
$registry = Zend_Registry::getInstance();
$mailConfig = new MailConfig($this->options);
$config = new Config($this->options);
$config->setMailConfig($mailConfig);
$registry->set('config', $config);
}
}
从这里抛出的任何异常都会被错误处理程序捕获并处理,并且可以显示一条很好的消息,例如“local.ini 中缺少配置值'doctrine.conn.database'”,然后我使用注册表访问这些配置值(实体管理器和邮件处理程序稍后添加)从应用程序的任何位置。
我希望我有权将此项目迁移到 Zend Framework 2,这样更容易使用。