在控制器中获取加载的配置

发布于 2024-09-15 14:49:40 字数 65 浏览 10 评论 0原文

如何在 zend 框架安装中获取控制器文件中已加载的选项而不创建新的 Zend_Config([ ** ]);实例。

How do i get the already loaded options in the controller file in a zend framework installation without creating a new Zend_Config([ ** ]); instance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半城柳色半声笛 2024-09-22 14:49:40

一旦 Zend_Application 读取 application.ini,这些值就会存储在 bootstrap 中。

您可以在任何地方访问它们,无需访问磁盘或使用注册表:

$front = Zend_Controller_Front::getInstance();
$bootstrap = $front->getParam('bootstrap');
if (null === $bootstrap) {
    throw new My_Exception('Unable to find bootstrap');
}

$options = $bootstrap->getOptions();

在控制器中您还可以使用 $this->getInvokeArg('bootstrap');

Once Zend_Application reads application.ini, the values are stored in bootstrap.

You may access them anywhere, without accessing the disk, or using the registry:

$front = Zend_Controller_Front::getInstance();
$bootstrap = $front->getParam('bootstrap');
if (null === $bootstrap) {
    throw new My_Exception('Unable to find bootstrap');
}

$options = $bootstrap->getOptions();

In the controller you may also use $this->getInvokeArg('bootstrap');

世界和平 2024-09-22 14:49:40

我完全不确定你在问什么,但你是在问如何从控制器使用 application.ini 中设置的配置吗?如果是这样,您应该在引导程序中的 Zend_Registry 中加载该配置,然后在控制器中检索它。

所以在 bootstrap.php 中

  protected function _initConfig() {
        $config = new Zend_Config_Ini("../application/configs/application.ini");
        Zend_Registry::set('config', $config);
    }

你的控制器中

  $myConfig = Zend_Registry::get('config');

I am not sure at all what you are asking but are you asking how to use configs set in application.ini from a controller? If so you should load that config in Zend_Registry in your bootstrap and then retrieve it in your controller.

So in bootstrap.php

  protected function _initConfig() {
        $config = new Zend_Config_Ini("../application/configs/application.ini");
        Zend_Registry::set('config', $config);
    }

The in your Controller

  $myConfig = Zend_Registry::get('config');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文