<?php $array['Top Level']['Level 2: A']['Son of A'] = "item"; $array['Top Level']['Level 2: A']['Daughter of A'] = "item"; $array['Top Level']['Level 2: B'] = "item"; function recurse($array, $parent = null) { $entries = []; foreach ($array as $key => $value) { $temp = [ 'name' => $key, 'parent' => $parent, 'children' => is_array($value) ? recurse($value, $key) : [] ]; if (!$temp['children']) { unset($temp['children']); } $entries[] = $temp; } return $entries; } var_export(recurse($array));
You have javascript disabled. You will not be able to edit any code.