php将一个包含父子关系的扁平化数组转换成树形菜单
发表于:2023-05-18 12:31:49浏览:1755次
以下是将一个包含父子关系的扁平化数组转换成树形菜单的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' => []]
]
]
]
]
]
推荐文章
- PHP将透明图片(PNG)合并到JPG背景图片上,实现PNG透明的效果
- 谷歌发布全新操作系统chromeOS Flex首个稳定版,可用于 PC 和 Mac
- javascript的遍历方法forEach和map的区别
- 免费杀毒软件是火绒好还是360好?
- 推荐五款优秀的SpringCloud开源脚手架项目
- 微信键盘正式版下载 - 融合微信生态
- 微软推出 VS Code for the Web 无需在 PC 上进行安装 打开浏览器就可以开始工作
- Element-plus,动态添加图标的方式
- 前端对返回的json数据预防XSS攻击
- Figma封禁大疆,蓝湖MasterGo上线“Figma文件导入功能”

