<?php "status" => "new", "type" => "type1", "source" => "source1", "other" => "other1", "count" => "1", ), "status" => "new", "type" => "type1", "source" => "source1", "other" => "other1", "count" => "2", ), "status" => "new", "type" => "type1", "source" => "source1", "other" => "other1", "count" => "5", ), "status" => "done", "type" => "type1", "source" => "source1", "other" => "other1", "count" => "1", ), "status" => "done", "type" => "type1", "source" => "source2", "other" => "other1", "count" => "3", ), "status" => "done", "type" => "type2", "source" => "source1", "other" => "other1", "count" => "1", ), "status" => "done", "type" => "type2", "source" => "source1", "other" => "other2", "count" => "5", ), "status" => "done", "type" => "type3", "source" => "source1", "other" => "other1", "count" => "1", ), "status" => "done", "type" => "type3", "source" => "source1", "other" => "other2", "count" => "5", ), ); { foreach($data as $node){ // Insert first grouping level as checked level $seen[] = $node[$groupBy[0]]; // Setting starting parent path $path[$groupBy[0]] = $node[$groupBy[0]]; // Get first group children $result[] = getChildren($node[$groupBy[0]], 0, $data, $groupBy, $path); } } return $result; } { $nextLevel = $currentLevel + 1; // Don't group deeper than needed and escape } foreach($data as $node){ // Add next record to $path (to trace each record parent) if($groupBy[$nextLevel]) { $path[$groupBy[$nextLevel]] = $node[$groupBy[$nextLevel]]; } // Some magic, to check if we are on correct segment (trace the same as should be) $goInside = true; foreach($path as $fieldName => $fieldValue) { if($node[$fieldName] != $fieldValue) { $goInside = false; break; } } // Just add data if($node[$groupBy[$currentLevel]] == $parent && $goInside) { $dataSet[] = $node; } // TODO: I don't know why, but this is working if($node[$groupBy[$currentLevel]] == $parent && !in_array($node[$groupBy[$nextLevel]], $seen) && $goInside) { $seen[] = $node[$groupBy[$nextLevel]]; $tempChildren = getChildren($node[$groupBy[$nextLevel]], $nextLevel, $data, $groupBy, $path); if($tempChildren && ($tempChildren["data"] || $tempChildren["children"])) { $children[] = $tempChildren; } } } 'fieldName' => $groupBy[$currentLevel], 'value' => $parent, ); if($children) { $result['children'] = $children; } else { if($dataSet) { $result['data'] = $dataSet; } } return $result; } echo "<pre>"; echo "</pre>";
Standard input is empty
<pre>Array ( [0] => Array ( [fieldName] => status [value] => new [children] => Array ( [0] => Array ( [fieldName] => type [value] => type1 [children] => Array ( [0] => Array ( [fieldName] => source [value] => source1 [children] => Array ( [0] => Array ( [fieldName] => other [value] => other1 [data] => Array ( [0] => Array ( [status] => new [type] => type1 [source] => source1 [other] => other1 [count] => 1 ) [1] => Array ( [status] => new [type] => type1 [source] => source1 [other] => other1 [count] => 2 ) [2] => Array ( [status] => new [type] => type1 [source] => source1 [other] => other1 [count] => 5 ) ) ) ) ) ) ) ) ) [1] => Array ( [fieldName] => status [value] => done [children] => Array ( [0] => Array ( [fieldName] => type [value] => type1 [children] => Array ( [0] => Array ( [fieldName] => source [value] => source1 [children] => Array ( [0] => Array ( [fieldName] => other [value] => other1 [data] => Array ( [0] => Array ( [status] => done [type] => type1 [source] => source1 [other] => other1 [count] => 1 ) ) ) ) ) [1] => Array ( [fieldName] => source [value] => source2 [children] => Array ( [0] => Array ( [fieldName] => other [value] => other1 [data] => Array ( [0] => Array ( [status] => done [type] => type1 [source] => source2 [other] => other1 [count] => 3 ) ) ) ) ) ) ) [1] => Array ( [fieldName] => type [value] => type2 [children] => Array ( [0] => Array ( [fieldName] => source [value] => source1 [children] => Array ( [0] => Array ( [fieldName] => other [value] => other1 [data] => Array ( [0] => Array ( [status] => done [type] => type2 [source] => source1 [other] => other1 [count] => 1 ) ) ) [1] => Array ( [fieldName] => other [value] => other2 [data] => Array ( [0] => Array ( [status] => done [type] => type2 [source] => source1 [other] => other2 [count] => 5 ) ) ) ) ) ) ) [2] => Array ( [fieldName] => type [value] => type3 [children] => Array ( [0] => Array ( [fieldName] => source [value] => source1 [children] => Array ( [0] => Array ( [fieldName] => other [value] => other1 [data] => Array ( [0] => Array ( [status] => done [type] => type3 [source] => source1 [other] => other1 [count] => 1 ) ) ) [1] => Array ( [fieldName] => other [value] => other2 [data] => Array ( [0] => Array ( [status] => done [type] => type3 [source] => source1 [other] => other2 [count] => 5 ) ) ) ) ) ) ) ) ) ) </pre>
PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 111 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 130 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 131 PHP Notice: Undefined offset: 4 in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined index: in /home/msHZRL/prog.php on line 132 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133 PHP Notice: Undefined index: data in /home/msHZRL/prog.php on line 133