Codeigniter:数组到字符串转换解决方案

时间:2016-08-26 11:01:00

标签: codeigniter

消息:

  

数组到字符串转换

文件名:models/db_get.php

function get_where_conditions1($tb,$where)
{           
    $this->db->select('*');
    $this->db->distinct();
    $this->db->from($tb);
    $this->db->join("restaurants", $tb.".".'restaurant_id = restaurants.id',"LEFT");
    $this->db->where_in('branches.'.'$where');
    $this->db->order_by('branches.id','desc');
    $query=  $this->db->get()->result_array();
    $out=array_unique($query);    
    return  $out;      
}

1 个答案:

答案 0 :(得分:0)

在你的函数$中,必须是数组,但不知道它的类型。

我认为问题符合$ this-> db-> where_in(' branches。'。' $ where'); 它应该是$ this-> db-> where_in(' branches',$ where);