php菜单/评论数据递归分级算法的实现方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-12-08 11:36:39 浏览: 评论:0
这篇文章主要给大家介绍了关于php菜单/评论数据递归分级算法的实现方法,文中通过示例代码介绍的非常详细,对大家学习或者使用php具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧。
在开发过程中经常会遇到分级场景,如菜单分级、评论、商品类型分级等;在同一张mysql数据表中可能设计单表结构,如同如下数据:
- $menuList = [
- [ 'id' => 1,'parent_id' => 0, 'name' => '节点1'],
- [ 'id' => 2,'parent_id' => 1, 'name' => '节点1-1'],
- [ 'id' => 3,'parent_id' => 0, 'name' => '节点2'],
- [ 'id' => 4,'parent_id' => 3, 'name' => '节点2-1'],
- [ 'id' => 5,'parent_id' => 2, 'name' => '节点1-1-1'],
- [ 'id' => 6,'parent_id' => 1, 'name' => '节点1-2'],
- ];
这时候在处理展示过程就需要将上面的结构转换为更加直观的数据结构, 形如:
- $treeList = [
- [
- children: [
- children: []
- ]
- ]
- [,
- children: [
- children: []
- ]
- ]
- ];
算法代码如下:
- <?php
- class Menu
- {
- /**
- * 递归循环菜单列表, 转化为菜单树
- * @param $treeList 菜单树列表
- * @param $menuList 菜单列表
- * @return bool
- */
- public function getMenuTree(&$treeList, $menuList)
- {
- // 初始化顶级父节点
- if (! count($treeList)) {
- foreach($menuList as $index => $menu) {
- if ($menu['parent_id'] == 0) {
- $treeList[] = $menu;
- unset($menuList[$index]);
- }
- }
- }
- // 递归查找子节点
- foreach ($treeList as &$tree) {
- foreach ($menuList as $index => $menu) {
- if (emptyempty($tree['children'])) {
- $tree['children'] = [];
- }
- if ($menu['parent_id'] == $tree['id']) {
- $tree['children'][] = $menu;
- unset($menuList[$index]);
- }
- }
- if (! emptyempty($tree['children'])) {
- $this->getMenuTree($tree['children'], $menuList);
- } else {
- // 递归临界点
- return false;
- }
- }
- }
- }
- $menuList = [
- [ 'id' => 1,'parent_id' => 0, 'name' => '节点1'],
- [ 'id' => 2,'parent_id' => 1, 'name' => '节点1-1'],
- [ 'id' => 3,'parent_id' => 0, 'name' => '节点2'],
- [ 'id' => 4,'parent_id' => 3, 'name' => '节点2-1'],
- [ 'id' => 5,'parent_id' => 2, 'name' => '节点1-1-1'],
- [ 'id' => 6,'parent_id' => 1, 'name' => '节点1-2'],
- ];
- $treeList = [];
- (new Menu)->getMenuTree($treeList, $menuList);
- print_r($treeList);
- happy coding!
每一个不曾起舞的日子,都是对生命的辜负 ^-^
Tags: php菜单 php数据递归
- 上一篇:PHP实现微信提现(企业付款到零钱)
- 下一篇:php抽象类和接口知识点整理总结
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)