php将一个包含父子关系的扁平化数组转换成树形菜单
发表于:2023-05-18 12:31:49浏览:2026次
以下是将一个包含父子关系的扁平化数组转换成树形菜单的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' => []]
]
]
]
]
]
推荐文章
- 勾股系列系统:项目任务协作管理系统 —— 勾股 DEV 3.8.31 发布
- Windows Terminal Preview 1.15 发布
- Apache2配置ThinkPHP6的运行环境
- 勾股DEV,一款专为IT行业研发团队打造的智能化项目管理与团队协作的工具软件
- ThinkPHP部署到nginx的详细步骤
- box-shadow设置1像素边框的多种方案
- 2023最新阿里云域名优惠口令(长期有效)
- Unicode 14.0标准版本发布,新增 838 个字符,共计达 144697 个字符
- 企业OA系统开发一般需要多久?开发费用怎样?
- thinkphp使用where in查询order按照in的顺序排序

