Category hierarchy from array(cat id => parent id)

后端 未结 6 1948
你的背包
你的背包 2021-01-24 23:26

i am trying to create a multidimensional array hierarchy from a simple array which contains pairs of category ids and parent ids. The categories can be a parent and a subcategor

6条回答
  •  抹茶落季
    2021-01-24 23:55

    You can make an array like this

    $initialArray = array();
    $initialArray[parent_id][cat_id]='your_value';   //$initialArray[0][0] ... and then increasing
    

提交回复
热议问题