Tree.php 545 B

123456789101112131415161718192021222324252627
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher;
  4. class Tree
  5. {
  6. public static function done(array $items, $pid = 0, $pidField = 'parent_id', $children = 'children')
  7. {
  8. $tree = [];
  9. foreach ($items as $key => $item) {
  10. if ($item[$pidField] == $pid) {
  11. $child = self::done($items, $item['id'], $pidField);
  12. if (count($child)) {
  13. $item[$children] = $child;
  14. }
  15. $tree[] = $item;
  16. }
  17. }
  18. return $tree;
  19. }
  20. }