Sıralama MPTT çok boyutlu bir dizi PHP içine Resultset

1 Cevap php

I have been experimenting with the Modified Pre-Order Tree Traversal Pattern, my test case code is returning the results as expected however I am having trouble converting the 2D array into a multi-dimensional array to present it.

İşte 3 seviyeli bir menü sonucunda bir örnektir, ben TAL bunu yineleme böylece çok-boyutlu bir diziye bu dönüştürmek gerekir:

Array
(
    [0] => Array
        (
            [CategoryID] => 1
            [ParentID] => 0
            [CategoryName] => Default Parent
            [lt] => 1
            [rt] => 14
            [tree_depth] => 1
        )

    [1] => Array
        (
            [CategoryID] => 8
            [ParentID] => 1
            [CategoryName] => SysAdmin
            [lt] => 2
            [rt] => 7
            [tree_depth] => 2
        )

    [2] => Array
        (
            [CategoryID] => 2
            [ParentID] => 8
            [CategoryName] => Linux
            [lt] => 3
            [rt] => 4
            [tree_depth] => 3
        )

    [3] => Array
        (
            [CategoryID] => 3
            [ParentID] => 8
            [CategoryName] => Windows
            [lt] => 5
            [rt] => 6
            [tree_depth] => 3
        )

    [4] => Array
        (
            [CategoryID] => 5
            [ParentID] => 1
            [CategoryName] => Code
            [lt] => 8
            [rt] => 13
            [tree_depth] => 2
        )

    [5] => Array
        (
            [CategoryID] => 6
            [ParentID] => 5
            [CategoryName] => PHP
            [lt] => 9
            [rt] => 10
            [tree_depth] => 3
        )

    [6] => Array
        (
            [CategoryID] => 7
            [ParentID] => 5
            [CategoryName] => Perl
            [lt] => 11
            [rt] => 12
            [tree_depth] => 3
        )

)

Her ebeveyn ebeveyn / çocuk / torun olabilir çocukların miktarına herhangi bir sınırlama ile, tekrarlanan diziler dizisi olan 'Çocuk' tuşuna sahip böylece veri yapısı gerek, tree_depth anahtar tarafından otomatik olarak dışarı çalıştı DBMS, bu yüzden sadece dizinin yapısını değiştirmek gerekir.

Herhangi bir işaretçiler büyük takdir, ben usort () ile oynamış ve boşuna array_walk_recursive.

Şimdiden teşekkürler

1 Cevap

Bence basit bir foreach (referanslar yardımıyla) burada hile yapabilirsiniz:

Bir $menu ilişkisel dizi kurmak $cat_id => $element_details_anb_children:

$menu = array(); $ref = array();
foreach( $tree as $d ) {
    $d['children'] = array();
    if( isset( $ref[ $d['ParentID'] ] ) ) { // we have a reference on its parent
        $ref[ $d['ParentID'] ]['children'][ $d['CategoryID'] ] = $d;
        $ref[ $d['CategoryID'] ] =& $ref[ $d['ParentID'] ]['children'][ $d['CategoryID'] ];
    } else { // we don't have a reference on its parent => put it a root level
        $menu[ $d['CategoryID'] ] = $d;
        $ref[ $d['CategoryID'] ] =& $menu[ $d['CategoryID'] ];
    }
}

Eğer ($menu) istediğiniz boyutlu dizi ve sadece her kategori için başvurular tutan düz bir dizi: Bu iki dizileri inşa etmeliyiz. Zaten varsa her tekrarında (ben referans tablosunu tutmak neden olan) onun üst içine kategorisini nests. (Ebeveyn çocuklarının önce gelir yani) Tabii ki bu sizin ilk $tree dizisi sipariş yalnızca çalışır.