如何在codeigniter中进行公共连接功能以进行列表

时间:2012-12-21 07:41:29

标签: php codeigniter activerecord join

我在codeigniter中有一个连接函数用于列表,但它只连接两个表格,对于三个表我必须使用另一个函数,依此类推,是否有任何方法可以使这些函数对于任何数量的连接都是通用的 型号代码

public function __construct()
{
    $this->load->database();
}

//listing with join for two tabels
public function get_joinlist($table,$value,$table2,$condi,$join_type,$order_by,$order,$where,$limit, $offset)
{
        $this->db->select($value);
            $this->db->join($table2,$condi,$join_type);
    $this->db->order_by($order_by,$order);
    $this->db->where($where);
    return $query= $this->db->get($table, $limit, $offset);
}
//listing with join for three tabels
public function get_joinlist1($table,$value,$table2,$condi1,$join_type1,$table3,$condi2,$join_type2,$where,$order_by,$order)
{
    $this->db->select($value);
    $this->db->join($table2, $condi1,$join_type1);
    $this->db->join($table3, $condi2,$join_type2);
    $this->db->where($where);
    $this->db->order_by($order_by,$order);
    return $this->db->get($table);
}

1 个答案:

答案 0 :(得分:2)

这是一个让你入门的非常简单的例子

$joins构造为数组:

$joins = array(
    array(
        'table' => 'table2',
        'condition' => 'table2.id = table1.id',
        'jointype' => 'LEFT'
    ),
);

示例函数处理连接为数组:

public function get_joins($table, $columns, $joins)
{
    $this->db->select($columns)->from($table);
    if (is_array($joins) && count($joins) > 0)
    {
        foreach($joins as $k => $v)
        {
            $this->db->join($v['table'], $v['condition'], $v['jointype']);
        }
    }
    return $this->db->get()->result_array();
}