Ho trovato questo codice per il raggruppamento di array padre figlio fantastico. Ho testato in 4 profondità senza alcun problema. Non è una funzione ricorsiva però.
$tree = null;
foreach($results as $result)
{
$thisref = &$refs->{$result['id']};
foreach($result as $k => $v)
{
$thisref->{$k} = $v;
}
if ($result['parentId'] == 0) {
$tree->{$result['id']} = &$thisref;
} else {
$refs->{$result['parentId']}->children->{$result['id']} = &$thisref;
}
}
$tree; // contains the newly sorted tree.
Potrebbe essere necessario apportare alcune modifiche affinché funzioni completamente con la tua situazione. Ma fondamentalmente scorre tutti i risultati e li combina per riferimento.
Nota che la desinenza $tree
il tipo di dati è un object
e non un array
Buona fortuna
AGGIORNAMENTO
Puoi creare l'array come tale
$query = "SELECT * FROM pB_test ORDER BY parentId ASC";
$dbresult = mysql_query($query) or die ('Database Error (' . mysql_errno() . ') ' . mysql_error());
$results = array();
while($row=mysql_fetch_assoc($dbresult))
{
$results[]=$row
}