Rumah >pembangunan bahagian belakang >tutorial php >php多次调用递归函数
递归函数如下:
/***递归获取指定分类下的子类*@params $categories array 全部分类的数组*@params $parent_id int 父类id 默认为顶级分类*@return $arr array 获取到的子类数组**/function get_child_category($categories,$parent_id=0){ static $arr=array(); foreach ($categories as $category){ if ($category['parent_id']==$parent_id){ $arr[]=$category; get_child_category($categories,$category['cat_id']); } } return $arr;}
作为参数传递
function get_child_category($categories,$parent_id=0, $arr=array()){ foreach ($categories as $category){ if ($category['parent_id']==$parent_id){ $arr[]=$category; $arr = get_child_category($categories,$category['cat_id'], $arr); } } return $arr;}为减少内存开销,可以传递引用
function get_child_category(&$categories, $parent_id=0, &$arr=array()){ foreach ($categories as $category){ if ($category['parent_id']==$parent_id){ $arr[]=$category; get_child_category($categories, $category['cat_id'], $arr); } } return $arr;}调用
print_r(get_child_category($ar, 0));print_r(get_child_category($ar, 2));
问题已解决,非常感谢版主的热心帮助!!!