我的桌子[cat_id,title,pid]
。我需要按以下格式获取所有子子类别 ID:
[1] =>Array ( [cat_id] => 2 [title] => TEST [pid] => 1 ),
[2] =>Array ( [cat_id] => 3 [title] => TEST [pid] => 1 ),
[3] =>Array ( [cat_id] => 4 [title] => TEST [pid] => 2 ),
[4] =>Array ( [cat_id] => 5 [title] => TEST [pid] => 3 )
目的 - 使用孩子的 ID 来获取所有这些项目。
我尝试按照以下代码执行操作,但它不起作用:
public function get_ids($tree,$cid = 0)
{
$data = $this->db->select('cat_id, title, pid')
->where('pid',$cid)
->get('catalog');
$result = array_push($tree,$data->result_array());
if($data->num_rows() > 0){
foreach ($data->result_array() as $r) {
return $this->get_ids($result,$r['cat_id']);
}
}
else{
return $result;
}
}
也许有更好的方法?