dongzi0857 2014-08-03 08:51
浏览 139
已采纳

Codeigniter选择distinct并传递变量列表

Just want to SELECT DISTINCT country FROM table WHERE user_id=$user_id, pass the country list from model to controller and then pass the JSON representation of the country list but as I am a newbie in Codeigniter I am not sure if wrote the query correctly and if I return the list or a single value. Could you please check my code.

Model:

public function did_get_country_list($user_id) {

        $this->db->distinct('country');
        $this->db->where('user_id',$user_id);
        $query = $this->db->get('table');

        if ($query->num_rows() >= 1) {
         foreach ($query->result() as $row)
        {
            $country = $row->country;
        }
        return $country;
        }
        else{
         return false;
        }       
    }   

Controller:

$country = $this->model_users->did_get_country_plans($user_id);

echo json_encode($country);
  • 写回答

1条回答 默认 最新

  • doudang9147 2014-08-03 08:57
    关注

    Your code looks almost ok to me, but I think you should change 2 lines:

    1) Remove the check for num_rows before the actual query.

    2) To return an array of countries, add [] at the end of $country to push the new values.

    So, instead of this snippet:

        if ($query->num_rows() >= 1) {
         foreach ($query->result() as $row)
        {
            $country = $row->country;
        }
        return $country;
        }
        else{
         return false;
        }
    

    You would have:

        $country = false;
        foreach ($query->result() as $row)
        {
            $country[] = $row->country;
        }
        return $country;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 pnpm 下载element-plus
  • ¥15 解决编写PyDracula时遇到的问题
  • ¥15 有没有人能解决下这个问题吗,本人不会编程
  • ¥15 plotBAPC画图出错
  • ¥30 关于#opencv#的问题:使用大疆无人机拍摄水稻田间图像,拼接成tif图片,用什么方法可以识别并框选出水稻作物行
  • ¥15 Python卡尔曼滤波融合
  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥20 能提供一下思路或者代码吗