phpcodeigniterrecursiontree

The output of the tree to a string


My table [cat_id,title,pid]. I need to get all the child sub-categories ID`s in the following format:

[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 ) 

Purpose - using ID`s of the childs, to get all of these items.

I tried to do something as the following code, but it does not work:

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;
    }
}

Maybe there is better way?


Solution

  • Try the below code to get all child ids by given parent id.

    function fnGetChildCatelogs($id) {
    
        $qry = "SELECT cat_id FROM catalog WHERE pid = $id";
    
        $rs = mysql_query($qry);    
    
        $arrResult = array();    
    
        if(mysql_num_rows($rs) > 0) {
    
            # It has children, let's get them.
    
            while($row = mysql_fetch_array($rs)) {
    
                # Add the child to the list of children, and get its subchildren
    
                $arrResult[$row['cat_id']] = fnGetChildCatelogs($row['cat_id']);
    
            }
    
        }
    
        return $arrResult;
    
    }