mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
121 lines
3.4 KiB
PHP
121 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace ba;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class Tree
|
|
{
|
|
/**
|
|
* @var Tree
|
|
*/
|
|
protected static $instance;
|
|
|
|
/**
|
|
* 生成树型结构所需修饰符号
|
|
* @var array
|
|
*/
|
|
public static $icon = array('│', '├', '└');
|
|
|
|
protected $childrens = [];
|
|
|
|
|
|
/**
|
|
* 初始化
|
|
* @access public
|
|
* @return Tree
|
|
*/
|
|
public static function instance(): Tree
|
|
{
|
|
if (is_null(self::$instance)) {
|
|
self::$instance = new static();
|
|
}
|
|
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* 将数组渲染为树状,需自备children children可通过$this->assembleChild()方法组装
|
|
* @param array $arr 要改为树状的数组
|
|
* @param string $field '树枝'字段
|
|
* @param int $level 递归数组层次,无需手动维护
|
|
* @param false $superiorEnd 递归上一级树枝是否结束,无需手动维护
|
|
* @return array
|
|
*/
|
|
public static function getTreeArray($arr, $field = 'name', $level = 0, $superiorEnd = false): array
|
|
{
|
|
if (!is_array($arr)) {
|
|
return [];
|
|
}
|
|
$level++;
|
|
$number = 1;
|
|
$total = count($arr);
|
|
foreach ($arr as $key => $item) {
|
|
$prefix = ($number == $total) ? self::$icon[2] : self::$icon[1];
|
|
if ($level == 2) {
|
|
$arr[$key][$field] = str_pad('', 4, ' ') . $prefix . $item[$field];
|
|
} elseif ($level >= 3) {
|
|
$arr[$key][$field] = str_pad('', 4, ' ') . ($superiorEnd ? '' : self::$icon[0]) . str_pad('', ($level - 2) * 4, ' ') . $prefix . $item[$field];
|
|
}
|
|
|
|
if (isset($item['children']) && $item['children']) {
|
|
$arr[$key]['children'] = self::getTreeArray($item['children'], $field, $level, $number == $total);
|
|
}
|
|
$number++;
|
|
}
|
|
return $arr;
|
|
}
|
|
|
|
/**
|
|
* 递归合并树状数组,多维变二维
|
|
* @param array $data 要合并的数组
|
|
* @return array
|
|
*/
|
|
public static function assembleTree($data)
|
|
{
|
|
$arr = [];
|
|
foreach ($data as $v) {
|
|
$children = $v['children'] ?? [];
|
|
unset($v['children']);
|
|
$arr[] = $v;
|
|
if ($children) {
|
|
$arr = array_merge($arr, self::assembleTree($children));
|
|
}
|
|
}
|
|
return $arr;
|
|
}
|
|
|
|
/**
|
|
* 递归的根据指定字段组装children数组
|
|
* @param array $data 数据源 例如:[['id' => 1, 'pid' => 0, title => '标题1'], ['id' => 2, 'pid' => 1, title => '标题1-1']]
|
|
* @param string $pid 存储上级id的字段
|
|
* @return array ['id' => 1, 'pid' => 0, 'title' => '标题1', 'children' => ['id' => 2, 'pid' => 1, 'title' => '标题1-1']]
|
|
*/
|
|
public function assembleChild($data, $pid = 'pid')
|
|
{
|
|
if (!$data) {
|
|
return [];
|
|
}
|
|
|
|
// 以pid组成数组
|
|
foreach ($data as $item) {
|
|
$this->childrens[$item[$pid]][] = $item;
|
|
}
|
|
if (isset($this->childrens[0])) {
|
|
return $this->getChildren($this->childrens[0]);
|
|
} else {
|
|
return $data;
|
|
}
|
|
}
|
|
|
|
protected function getChildren($data): array
|
|
{
|
|
foreach ($data as $key => $item) {
|
|
if (array_key_exists($item['id'], $this->childrens)) {
|
|
$data[$key]['children'] = $this->getChildren($this->childrens[$item['id']]);
|
|
}
|
|
}
|
|
return $data;
|
|
}
|
|
} |