美文网首页PHP
php 简单的实现无限级分类树

php 简单的实现无限级分类树

作者: 七百年前 | 来源:发表于2016-05-05 16:59 被阅读99次

    php
    数据表

    Paste_Image.png
    $sql = "select id,class_cid,class_name from hl_goods_class order by id asc ";
    $items = $this->fetch_list($sql);
            for($i=1;$i<=count($items);$i++){
                $aa[$i] = $items[$i-1];
            }
            $tree = array();
            foreach ($aa as $item) {
                if (isset($aa[$item['class_cid']])) {
    
                    $aa[$item['class_cid']]['son'][] = &$aa[$item['id']];
                } else {
                    $tree[] = &$aa[$item['id']];
                }
            }
            return $tree;

    相关文章

      网友评论

        本文标题:php 简单的实现无限级分类树

        本文链接:https://www.haomeiwen.com/subject/xqvdrttx.html