CakePHP 中的不同环境?
我想在我的 CakePHP 应用程序中有许多环境,
并为每个环境都有一个 core.php 文件,即
core-development.php 和 core-development.php。如何管理呢?
I wanna have many environments in my CakePHP application,
and have a core.php file for each environment, i.e.,
core-production.php and core-development.php. How to manage it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,您希望为每个位置加载不同的配置。管理此问题的最佳方法是建立自定义配置基于服务器的位置。
为此,您可以创建一个 custom.php 配置来检查服务器名称。
现在,在核心中,您可以根据您的环境配置设置:
现在您可以使用
Configure::write('MyDomain.environment', x)
在任何地方配置所有内容,而无需修改CakePHP 核心读取文件。快乐编码!
If I understand correctly, you are looking to load different configurations for each location. The best way to manage this is to establish custom configurations based on the location of the server.
So to do this, you can create a custom.php configuration that checks the server name.
Now, in the core, you can configure the settings based on your environment:
Now you can configure everything anywhere using
Configure::write('MyDomain.environment', x)
without having to modify the way the CakePHP core reads the files.Happy coding!