php将一个包含父子关系的扁平化数组转换成树形菜单
发表于:2023-05-18 12:31:49浏览:2413次
以下是将一个包含父子关系的扁平化数组转换成树形菜单的PHP递归函数示例:
function generateTree($flatArray, $parentId = null) {
$tree = [];
foreach ($flatArray as $item) {
if ($item['parent_id'] === $parentId) {
$node = [
'id' => $item['id'],
'name' => $item['name'],
'children' => generateTree($flatArray, $item['id'])
];
$tree[] = $node;
}
}
return $tree;
}
该函数接受一个包含父子关系的扁平化数组和可选的parentId参数作为输入。它会遍历数组并找到所有具有指定父ID的节点,将它们转换为对象,并在children属性中递归调用它自己以获取每个节点的子节点。最终,它将返回一个树形菜单对象数组。
例如,假设我们有以下扁平化数组:
$flatArray = [
['id' => 1, 'parent_id' => null, 'name' => 'Home'],
['id' => 2, 'parent_id' => 1, 'name' => 'About'],
['id' => 3, 'parent_id' => 1, 'name' => 'Contact'],
['id' => 4, 'parent_id' => 2, 'name' => 'History'],
['id' => 5, 'parent_id' => 2, 'name' => 'Team'],
['id' => 6, 'parent_id' => 3, 'name' => 'Support'],
['id' => 7, 'parent_id' => 3, 'name' => 'Sales']
];
我们可以调用generateTree($flatArray,0)以获取以下树形菜单对象数组:
[
[
'id' => 1,
'name' => 'Home',
'children' => [
[
'id' => 2,
'name' => 'About',
'children' => [
['id' => 4, 'name' => 'History', 'children' => []],
['id' => 5, 'name' => 'Team', 'children' => []]
]
],
[
'id' => 3,
'name' => 'Contact',
'children' => [
['id' => 6, 'name' => 'Support', 'children' => []],
['id' => 7, 'name' => 'Sales', 'children' => []]
]
]
]
]
]
推荐文章
- 使用table2excel实现layui数据表格导出复杂表头EXCEL
- Layui的laydate模块实现快捷选中今天、昨天 、本周、本月等操作
- PHP中,如果存在继承关系,其中子类和父类都定义了构造函数__construct(),怎么处理?
- thinkphp6一个部门可以有多个负责人主功能代码
- Layui的upload模块实现多图批量上传,无需修改代码,完美解决方案
- Nginx实现二级域名或三级域名泛解析
- php实现pdf转word文档,pdf转excel表格的方案
- PHP导出excel表格如何支持公式?
- ES6 用反引号(`)标识模板字符串详解
- phpstudy如何切换设置不同的composer版本及PHP版本

