如何使用php显示类似WordPress的类别结构?
Array
( [0] => stdClass对象 ( [cat_id] => 64 [name] =>沐浴肥皂 [slug] =>沐浴皂 [cat_taxonomy_id] => 65 [taxonomy] => product_cat [parent] => 63 )
[1] => stdClass Object
(
[cat_id] => 65
[name] => Chemical
[slug] => chemical
[cat_taxonomy_id] => 66
[taxonomy] => product_cat
[parent] => 64
)
[2] => stdClass Object
(
[cat_id] => 63
[name] => Soap
[slug] => soap
[cat_taxonomy_id] => 64
[taxonomy] => product_cat
[parent] => 0
)
)
答案 0 :(得分:1)
在您的示例中是将数据存储在数据库中的数组。
对于输出树结构,您应该将其转换为树结构。
例如:
从加载数据库加载数据时可以执行的步骤1。 步骤2和3可以在一次迭代中进行(foreach)
在此之后,您的示例将类似
array(
[0] => stdClass Object
(
[cat_id] => 0,
[childs] => array( [0]=>63 )
...
)
[63]=> stdClass Object
(
[cat_id] => 63,
[childs] => array( [0]=>64 )
...
)
然后你可以输出树。只需从key = 0开始并输出所有子项。对于每个孩子的头一个冠军,然后是所有孩子。你应该使用递归函数。
答案 1 :(得分:1)
我试过以下链接。你也可以在链接
下面试试这个http://stevenbuick.com/category-hierarchy-with-codeigniter-and-jstree/