如何在最后一次调用递归函数时返回变量?

时间:2018-12-08 20:13:26

标签: php function recursion

我有一个递归函数。如何在上次调用时从此递归函数返回值?

public function deneme($parent_id = 0, $sub_mark = 0, $str = '') {
    $this->db->select('*');
    $this->db->from('categories');
    $this->db->where('parent_id = ' . $parent_id);
    $this->db->order_by('id', 'ASC');
    $query = $this->db->get();
    if($query->num_rows() > 0) {
        $str .= '<ul>';
        foreach($query->result_array() as $row) {
            if ($parent_id == 0) {
                $str .= '<li class="active">';
            } else {
                $str .= '<li>';
            }
            $str .= '<a href="index.html">' . $row['name'] . '</a> </li> '; 
            $sub_mark++;
            $this->deneme($row['id'], $sub_mark, $str);
        }
        $str .= '</ul>';
    }
}

我想返回str变量。

1 个答案:

答案 0 :(得分:2)

好像您需要进行一些更改,首先要从例程的末尾返回构建的字符串...

        }
        $str .= '</ul>';
    }
    return $str;
}

第二个是递归调用例程的地方,您需要将返回值设置为所生成的字符串...

$str = $this->deneme($row['id'], $sub_mark, $str);