Her er min løsning til det:
function cost_centres_format($items,$parent_id,$array=array()) {
foreach($items as $item) {
if($item->parent_id == $parent_id) {
$array[] = $item;
if($item->internal_purchase_order_cost_centre_id>0) {
$array = cost_centres_format($items,$item->internal_purchase_order_cost_centre_id,$array);
}
}
}
return $array;
}
$array = cost_centres_format($items,0);
Diesel (id:5) vil være under køretøjsvedligeholdelse (id:4) på grund af dens oprindelige ordre. Du kan foretage en ekstra sortering efter navn, men i dit eksempel var Kapital (id:3) under Overheads (id:2).