Codeigniter:选择db的更好方法是什么?

时间:2010-01-16 20:55:51

标签: php select codeigniter

这是我从SQL db中获取内容的函数......

有更优雅的方法吗?

function getResults_1($id)
{
    $this->db->select(array("a_1","a_2"))->from('Survey');
    $this->db->where('user_id', $id);

    return $this->db->get();
}
function getResults_2($id)
{
    $this->db->select(array("a_6","a_8","a_13","a_14"))->from('Survey');
    $this->db->where('user_id', $id);

    return $this->db->get();
}
and so on... (to 5)...

2 个答案:

答案 0 :(得分:2)

function get_results($id, $method) {
    switch($method) {
        case 1: $select = array('a_1','a_2'); break;
        case 2: $select = array('a_6','a_8','a_13','a_14'); break;
        default: $select = false;
    }

    if($select) $this->db->select($select);
    $this->db->where('user_id',$id);

    return $this->db->get('Survey');
}

答案 1 :(得分:1)

对@ Steven的结果进行了更优化(对于初学者用户来说可能更复杂)的版本。这假设您没有超出数组索引引用的范围,否则会出错。

function get_results($id, $method) {
    $select_cols = array(1 => array('a_1','a_2'),
                         2 => array('a_6','a_8','a_13','a_14'));
    return $this->db->select($select_cols[$method])
                    ->where('user_id', $id)
                    ->get('Survey');
}