我有一个heirachical
数据库结构。使用Recurisive
函数,我已将db
值存储在层次结构数组中。所以现在我希望在view
中以井格式显示数组。(如tree
)。 codeigniter中是否有library
支持。 ?
DB
PK parent name
-------------------------
1 0 Animals
2 1 Cat
我的阵列
Array
(
[0] => Array
(
[PK] => 1
[parent] => 0
[name] => Animals
[childs] => Array
(
[0] => Array
(
[PK] => 2
[parent] => 1
[name] => Cat
)
)
)