如何在zend中动态更改application.ini的服务器环境设置
我在 Zend 中创建了一个新项目。现在它在[生产]下的设置值上运行。我希望我的应用程序运行[开发:生产]下的设置值。我需要通过检查我的主机名动态地执行此操作。我该怎么做?我还需要从我的控制器知道我正在运行的设置([生产]或[开发:生产]或任何其他)。
请帮忙
I have created a new project in Zend. Now it runs on the settings value under [production]. I would like my application to run the settings value under [development : production]. I require to do this dynamically by checking my host name. How can I do this? Also I need to know from my controller, under which settings I am running ([production] or [development : Production] or any other).
Kindly help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在你的index.php文件中,你应该插入这样的内容:
参见PHP $_SERVER
In your index.php file you should insert something like this:
See PHP $_SERVER