PHP Friends Club Chat: PHP, обсуждаем новости, делимся опытом. About - http://phpfriends.club/chats.html
function setTreeArray($data){
$array = [];
foreach($data as $category_id => $item){
if($item['parent_id'] == 0){
$array[$item['id']] = $item;
} else {
$array[$item['parent_id']]['children'][$category_id] = $item;
}
}
return $array;
}
docker exec -it --user=www-data apache bash