2

我正在尝试config_value根据 config_name 从表中检索,如 codeigniter 项目中的图像所示。即使我无法理解从哪里开始。我在互联网上找到了类似的东西(用于示例)。

$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

4 回答 4

3

做这样的事情:

$this->db->where('config_name', 'Account_activation');
$q = $this->db->get('my_users_table');
/* if u r fetching one row use row_array instead of result_array*/
$row = $q->row_array();

echo $row['config_value'];

更多信息:https ://www.codeigniter.com/user_guide/database/index.html

于 2018-07-22T08:52:00.163 回答
0

如果您想根据配置名称检索配置值,您可以简单地在选择查询中添加一个 where 条件,就像我在这里给出的那样,输入您想要检索查询的任何 config_name,它将打印其中的配置值同一行。

$this->db->select('config_value');
$q = $this->db->get_where('my_users_table',array('config_name'=>'home_page'));
$row = $q->row_array();
echo $row['config_name']; // this will print index.php 
于 2018-07-22T09:04:30.067 回答
0

尽管功能相同,但与其他答案略有不同。您可以制作一个助手并包含此功能。仅当您一次只想获取一个配置项时才真正有用。

function config_item_db($key)  {

    $CI = & get_instance();
    $query = $CI->db->get_where('my_users_table', array('config_name' => $key));
    if ($query->num_rows() == 1) {
        return $query->row()->{$key};
    } else {
        return false;
    }

}
于 2018-07-22T09:46:07.510 回答
0

使用 codeignitor 的 get_where() 方法并在数组中传递选择条件。例子:

$this->load->database();
$this->db->get_where('table_name', array('database_column_title' => $value1, 
'database_column_title' => $value2));
于 2019-12-15T05:53:43.667 回答