如何在zend中动态更改application.ini的服务器环境设置

发布于 2024-12-15 15:01:05 字数 145 浏览 3 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

放肆 2024-12-22 15:01:06

在你的index.php文件中,你应该插入这样的内容:

defined('APPLICATION_ENV')
    || define('APPLICATION_ENV', ($_SERVER['SERVER_ADDR'] != '127.0.0.1' ? 'production' : 'development'));

参见PHP $_SERVER

In your index.php file you should insert something like this:

defined('APPLICATION_ENV')
    || define('APPLICATION_ENV', ($_SERVER['SERVER_ADDR'] != '127.0.0.1' ? 'production' : 'development'));

See PHP $_SERVER

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