我是codegniter的新手。我使用以下代码递归地执行函数。
在第一次调用中,我通过 reply_id 然后在函数中我使用查询来选择那些具有
parent_id = reply_id 的 id 然后在 foreach 中我对所有选定的 id 执行相同的过程。
现在我想为所有递归返回组合数组。因为每个 id 查询都被执行并每次都得到新的结果。
我怎样才能做到这一点??
$resultq3 = $this->showreply($reply_id); //first call to function
<?php
public function showreply( $reply_id ) {
$q1 =$this->db->select('*')
->from('forum_reply AS fr')
->where('fr.parent_id',$reply_id)
->order_by('fr.id ')->get();;
foreach( $q1->result_array() as $row4 ) {
$id = $row4['id'];
$parent_id = $row4['parent_id'];
if( $parent_id !=0 ) {
$this->showreply( $id );
}
}
return $result; //here want to return result
}
?>
编辑代码:
$resultq3 = $this->showreply($reply_id); //first call to function
<?php
public function showreply( $reply_id ) {
$q1 =$this->db->select('*')
->from('forum_reply AS fr')
->where('fr.parent_id',$reply_id)
->order_by('fr.id ')->get();;
foreach( $q1->result_array() as $row4 ) {
$arr1 = $q1->result_array();
$arr = array_merge($arr, $arr1);
$id = $row4['id'];
$parent_id = $row4['parent_id'];
if(!empty($arr1)) {
$this->showreply( $id );
}
}
return $arr;
}
?>