在控制器中获取加载的配置
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一旦
Zend_Application
读取application.ini
,这些值就会存储在 bootstrap 中。您可以在任何地方访问它们,无需访问磁盘或使用注册表:
在控制器中您还可以使用
$this->getInvokeArg('bootstrap');
Once
Zend_Application
readsapplication.ini
, the values are stored in bootstrap.You may access them anywhere, without accessing the disk, or using the registry:
In the controller you may also use
$this->getInvokeArg('bootstrap');
我完全不确定你在问什么,但你是在问如何从控制器使用 application.ini 中设置的配置吗?如果是这样,您应该在引导程序中的 Zend_Registry 中加载该配置,然后在控制器中检索它。
所以在 bootstrap.php 中
你的控制器中
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
The in your Controller