美文网首页
tp5 无限极分类

tp5 无限极分类

作者: 心得体会站 | 来源:发表于2019-07-24 10:05 被阅读0次

    public function getTrees($arr,$pid,$step = 0){

        global $tree;

        foreach($arr as $val) {

            if($val['parent_id'] == $pid) {

                $flag = str_repeat('-----------',$step);

                $val['cat_name'] = $flag.$val['cat_name'];

                $tree[] = $val;

                $this->getTrees($arr , $val['id'] ,$step+1);

            }

    }

        return $tree;

    }

    $this->getTrees($result, 0, 0);

    相关文章

      网友评论

          本文标题:tp5 无限极分类

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