php dizilerle kategoriler sipariş

0 Cevap php

Ben kategoriler bir dizi var:

categories = computers, entertainment, products, graphics cards

Dizi bazen yanlış sırayla döndü ama her kategori AYNI dizide var olan bir ebeveyn vardır.

categories = 
products[parent=0],
entertainment[parent=products],
computers[parent=entertainment],
graphics cards[parent=computers]

Herhangi amacıyla iade olsaydı nasıl ben bu diziyi sıralamak için php kullanmak istiyorsunuz?

Düzensiz Örnek:

categories = 
computers[parent=entertainment], 
entertainment[parent=products], 
products[parent=0], 
graphics cards[parent=computers]    

Üretmek gerekir:

categories = products, entertainment, computers, graphics cards

0 Cevap