本文介绍了如何从模型/控制器访问CodeIgniter配置变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从 /application/config/database.php访问 $ db ['default'] ['dbprefix'] (配置文件)

如何做到这一点?

推荐答案

尝试:

$this->load->database();
echo $this->db->dbprefix;



通常你可以使用$ this-> config-> item,但我认为只允许设置变量$ config

Normally you can use $this->config->item but I think that only allows variables set in $config

这篇关于如何从模型/控制器访问CodeIgniter配置变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 02:27