菜单无限级分类管理

/**
 * [treeMenus 菜单无限级分类管理]
 * @param  [type] $arr      [description]
 * @param  [type] $parentid [description]
 * @return [type]           [description]
 */
 function treeMenus($arr, $parentid){

        $array = array();
 
        foreach ($arr as $k => $v) {
             
            if($v['parentid'] == $parentid){
                $v['child'] = $this->fathercate($arr, $v['id']);
                $array[] = $v;
            }else
                continue;
        }

        return $array;
    }


你可能感兴趣的:(菜单无限级分类管理)