无限极分类

Posted fenle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无限极分类相关的知识,希望对你有一定的参考价值。

 

class CategoryController extends Controller

    public function index()
    
        $rootCats = Category::where(parent_id, null)->get();
        return $this->tree($rootCats);
    

    private function tree($cats) 
        $tree = [];
        foreach ($cats as $cat) 
            $childrenCats = Category::where(parent_id, $cat->id)->get();
            if ($childrenCats->isNotEmpty()) 
                $cat->children = $this->tree($childrenCats);
            
            $tree[] = $cat;
        
        return $tree;
    

 

以上是关于无限极分类的主要内容,如果未能解决你的问题,请参考以下文章

无限极分类原理与实现(转)

PHP无限极分类详谈

无限极分类

php递归无限极分类怎么弄

什么是 无限极分类???(PHP。数据库)

thinkphp无限极分类