Mysql
 sql >> Database >  >> RDS >> Mysql

funzione ricorsiva per ottenere tutte le categorie figlio

Ho avuto difficoltà a capire la tua funzione. Penso che questo farà quello che vuoi. Ottiene tutti i figli di una categoria con ID $id e anche i loro figli (ottenendo così l'intera sottocategoria, l'effetto di sottocategoria che volevi).

function categoryChild($id) {
    $s = "SELECT ID FROM PLD_CATEGORY WHERE PARENT_ID = $id";
    $r = mysql_query($s);

    $children = array();

    if(mysql_num_rows($r) > 0) {
        # It has children, let's get them.
        while($row = mysql_fetch_array($r)) {
            # Add the child to the list of children, and get its subchildren
            $children[$row['ID']] = categoryChild($row['ID']);
        }
    }

    return $children;
}

Questa funzione restituirà:

$var = array(
        'categoryChild ID' => array(
                'subcategoryChild ID' => array(
                        'subcategoryChild child 1' => array(),
                        'subcategoryChild child 2' => array()
                )
        ),
        'anotherCategoryChild ID' => array() # This child has no children of its own
);

Fondamentalmente restituisce un array con l'ID del figlio e un array contenente gli ID dei suoi figli. Spero che questo sia di qualche aiuto.