码迷,mamicode.com
首页 > Web开发 > 详细

php无限极分类

时间:2017-11-13 00:11:49      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:php   array   style   stat   res   get   tree   color   分类   

<?php
function getTree($list,$pid=0,$level=0){
    static $result=array();
    foreach($list as $value){
        if($value[‘pid‘]==$pid){
            $result[]=$value;
            getTree($list,$value[‘id‘],$level+1);
        }
    }
    return $result;
}

 

php无限极分类

标签:php   array   style   stat   res   get   tree   color   分类   

原文地址:http://www.cnblogs.com/mengor/p/7823463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!