gpt4 book ai didi

php - 从 Codeigniter 中的助手访问数据库配置变量

转载 作者:IT王子 更新时间:2023-10-29 00:08:20 25 4
gpt4 key购买 nike

是否可以从 Codeigniter 中的助手获取 database.php 变量值?

最佳答案

方法是这样的,通常你不能在helper中使用$this,所以你必须使用get_instance()。我已经给出了“主机名”的示例,您可以使用您需要的配置名称。

   function test()
{
$CI =& get_instance();
$CI->load->database();
echo $CI->db->hostname; // give the config name here (hostname).
}

关于php - 从 Codeigniter 中的助手访问数据库配置变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7242413/

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