Encontré que este código para agrupar matrices de padres e hijos es increíble. He probado en 4 profundidades sin ningún problema. Sin embargo, no es una función recursiva.
$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.
Es posible que deba hacer algunas modificaciones para que funcione completamente con su situación. Pero básicamente recorre todos los resultados y los combina por referencia.
Tenga en cuenta que el final $tree
el tipo de datos es un object
y no una array
Buena suerte
ACTUALIZAR
Puede crear la matriz como tal
$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
}