我正试图找回 config_value
基于codeigniter项目中的图所示的表中的config\u名称。连我都不知道从哪里开始。我在网上找到了这样的东西(作为例子)。
$this->db->select('age');
$this->db->where('id', '3');
$q = $this->db->get('my_users_table');
$data = $q->result_array();
echo($data[0]['age']);
我正试图找回 config_value
基于codeigniter项目中的图所示的表中的config\u名称。连我都不知道从哪里开始。我在网上找到了这样的东西(作为例子)。
$this->db->select('age');
$this->db->where('id', '3');
$q = $this->db->get('my_users_table');
$data = $q->result_array();
echo($data[0]['age']);
4条答案
按热度按时间rmbxnbpk1#
虽然功能相同,但与其他答案差别不大。您可以创建一个助手并包含此函数。仅当您一次只想获取一个配置项时才真正有用。
oalqel3c2#
如果您想根据配置名称检索配置值,只需在select查询中添加一个where条件,就像我在这里给出的那样,输入您想要检索查询的任何配置名称,它就会打印同一行中的配置值。
eoxn13cs3#
这样做:
更多信息:https://www.codeigniter.com/user_guide/database/index.html
cygmwpex4#
使用codeignator的get\u where()方法并在数组中传递select条件。例子: