摘要: //递归函数 实现无限级分类列表 function get_cate_list($list,$pid=0,$level=0) { static $tree = array(); foreach($list as $row) { if($row['pid']==$pid) { $row['level' 阅读全文
posted @ 2021-10-19 20:47 清淤 阅读(115) 评论(0) 推荐(0)