zend框架自动开关生产阶段测试..等
我需要更改什么才能从生产切换到登台.. 等等.. 以及在哪里.. Bootstrap ?
另外,好奇是否有人将他们的 Zend Framework 配置为自动从 生产、登台、测试..等基于主机信息..
示例..
if (hostname = 'prodServer') ... blah
if (hostname = 'testServer') ... blah
我是 Zend 的新手,但我通常将我的项目配置为自动切换 基于主机信息的运行环境。
谢谢
What do I change to switch from production to staging.. etc.. and where.. Bootstrap ?
Also, Curious if anyone has configured their Zend Framework to automatically switch from
production, staging, test.. etc based on Host information..
example..
if (hostname = 'prodServer') ... blah
if (hostname = 'testServer') ... blah
I'm new to Zend but I typically configure my projects to automatically switch
run environments based on the host information.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设您使用 APPLICATION_ENV 作为 Zend_Application 的一部分,那么您可以将其添加到您的 .htaccess 或主 Apache 配置中(假设 Apache 正在使用中 - 对于不同的 Web 服务器应该仍然可行)。
例如,在您的 .htaccess/config 中(假定 mod_setenv):
然后确保在 index.php 中使用以下方法设置 APPLICATION_ENV:
如果您使用 Zend_Tool 生成项目,则由 Zend_Tool 添加它。
Assuming that you are using APPLICATION_ENV as part of Zend_Application, then you could add this in either your .htaccess or main Apache config (assuming Apache is in use - should still be possible with different Web servers too).
For example, in your .htaccess/config (assumes mod_setenv):
Then ensure that APPLICATION_ENV is set in index.php by using:
This is added by Zend_Tool if you use it to generate the project.
这对我来说在 .htaccess
然后在我的 application.ini 中
That work for me in .htaccess
Then in my application.ini
我们定义了一个环境变量(ENVPHP),并在我们的XML配置文件中使用它,因此只要定义正确的ENVPHP环境变量,就会加载正确的数据库参数。使用 XML,您可以使用特定环境的参数来扩展(或覆盖)通用参数。
IE。配置如下所示:
要加载配置,我在引导程序中包含以下内容(实际上是在应用程序单例类中):
在 PHP 代码中,如果我只想为特定环境执行某些操作,那么我使用 Application:: getEnv() 来检查我所处的环境并根据它执行我想要的代码。
顺便说一句,ENVPHP 环境变量可以使用 ie 在 apache 配置文件中设置。 VirtualHost 容器中的
SetEnv ENVPHP "dev"
。对于 CLI PHP 脚本,您应该将其设置为操作系统环境变量...We define an environment variable (ENVPHP), and use this in our XML configuration files, so the correct DB parameters are loaded as long as you define the correct ENVPHP environment variable. Using XML you can extend (or override) your common parameters with those for the specific environments.
ie. the configuration looks as follows :
And to load the configuration, I have the following in my bootstrap (well, actually in an Application singleton class) :
In PHP code if I want to do some things only for specific environments then I use Application::getEnv() to check what environment I'm in and execute the code I want according to it.
BTW The ENVPHP environment variable can be set in your apache configuration file using ie.
SetEnv ENVPHP "dev"
within your VirtualHost container. For CLI PHP scripts you should set it as an OS environment variable...我看到的最好的方法是:
我还尝试了名为配置文件的主机:
但第一种方法要好得多。
The best way that I saw is:
I also tried host named configs files:
but the first approach is much better.