fork download
  1. <?php
  2.  
  3. $folders = [
  4. 0 => [
  5. "id" => "cc876497-d6a9-4b8a-bf4d-e39a8a416734",
  6. "name" => "archives",
  7. "company_id" => "bec5664f-30a2-4ca7-83ea-e6ff5a4ec244",
  8. "parent_folder" => null,
  9. ],
  10. 1 => [
  11. "id" => "94cae4aa-0be1-4428-8e5a-e040059a4adf",
  12. "name" => "N1",
  13. "company_id" => "bec5664f-30a2-4ca7-83ea-e6ff5a4ec244",
  14. "parent_folder" => "cc876497-d6a9-4b8a-bf4d-e39a8a416734",
  15.  
  16. ],
  17. 2 => [
  18. "id" => "8426b4bb-8d9f-4ba1-b81c-53f2d350b217",
  19. "name" => "N2",
  20. "company_id" => "950e70c2-6791-44da-a74c-fc6e6b7dddc9",
  21. "parent_folder" => "94cae4aa-0be1-4428-8e5a-e040059a4adf",
  22.  
  23. ],
  24. 3 => [
  25. "id" => "cebb481a-e19c-449e-ad77-3469f08834fd",
  26. "name" => "N3",
  27. "company_id" => "950e70c2-6791-44da-a74c-fc6e6b7dddc9",
  28. "parent_folder" => "8426b4bb-8d9f-4ba1-b81c-53f2d350b217",
  29. ]
  30.  
  31. ];
  32.  
  33. function mountTree($folders = [], $folder_id = null, $include_files = false)
  34. {
  35. $tree = [];
  36. foreach ($folders as $folder) {
  37. if ($folder['parent_folder'] === $folder_id) {
  38. $children = mountTree($folders, $folder['id'], $include_files);
  39. if ($children) {
  40. $folder['children'] = $children;
  41. }
  42. if ($include_files) {
  43. //$folder['files'] = $this->getFilesByFolder($folder['id']);
  44. }
  45. $tree[$folder['name']] = $folder;
  46. }
  47. unset($folders[$index]);
  48.  
  49. }
  50. return $tree;
  51. }
  52.  
  53. var_dump(mountTree($folders));
  54.  
  55.  
  56. ?>
Success #stdin #stdout #stderr 0.02s 26488KB
stdin
Standard input is empty
stdout
array(1) {
  ["archives"]=>
  array(5) {
    ["id"]=>
    string(36) "cc876497-d6a9-4b8a-bf4d-e39a8a416734"
    ["name"]=>
    string(8) "archives"
    ["company_id"]=>
    string(36) "bec5664f-30a2-4ca7-83ea-e6ff5a4ec244"
    ["parent_folder"]=>
    NULL
    ["children"]=>
    array(1) {
      ["N1"]=>
      array(5) {
        ["id"]=>
        string(36) "94cae4aa-0be1-4428-8e5a-e040059a4adf"
        ["name"]=>
        string(2) "N1"
        ["company_id"]=>
        string(36) "bec5664f-30a2-4ca7-83ea-e6ff5a4ec244"
        ["parent_folder"]=>
        string(36) "cc876497-d6a9-4b8a-bf4d-e39a8a416734"
        ["children"]=>
        array(1) {
          ["N2"]=>
          array(5) {
            ["id"]=>
            string(36) "8426b4bb-8d9f-4ba1-b81c-53f2d350b217"
            ["name"]=>
            string(2) "N2"
            ["company_id"]=>
            string(36) "950e70c2-6791-44da-a74c-fc6e6b7dddc9"
            ["parent_folder"]=>
            string(36) "94cae4aa-0be1-4428-8e5a-e040059a4adf"
            ["children"]=>
            array(1) {
              ["N3"]=>
              array(4) {
                ["id"]=>
                string(36) "cebb481a-e19c-449e-ad77-3469f08834fd"
                ["name"]=>
                string(2) "N3"
                ["company_id"]=>
                string(36) "950e70c2-6791-44da-a74c-fc6e6b7dddc9"
                ["parent_folder"]=>
                string(36) "8426b4bb-8d9f-4ba1-b81c-53f2d350b217"
              }
            }
          }
        }
      }
    }
  }
}
stderr
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47
PHP Notice:  Undefined variable: index in /home/L5Scho/prog.php on line 47