gpt4 book ai didi

database - Kohana - 每个环境的数据库配置

转载 作者:搜寻专家 更新时间:2023-10-30 19:48:42 25 4
gpt4 key购买 nike

我想在我的 Bootstrap 中设置正确的配置我将使用环境的功能。我尝试使用

Database::instance('my_conf');

Kohana::$config->attach(new Config_File('config/'.$environment));

这行不通....

有什么想法吗?

小花版本:3.3

最佳答案

1 - 在您的 Bootstrap 中,加载模型模块后,写入:

Kohana::$config->attach(new Config_File('config/'.$_SERVER['YOUR_ENV']));

2 - 在文件夹 config 中创建一个名为 $_SERVER['YOUR_ENV'] 的子文件夹“foobar”

3 - 把你的文件放进去 > config/foobar/database.php |不要更改“默认”键

return array
(
'default' => array
(
// your config
)
)

4 - 在 apache 中设置:

SetEnv YOUR_ENV foobar

而且有效!!

关于database - Kohana - 每个环境的数据库配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17049272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com