私はカテゴリテーブルを持っています:
CategoryID CategoryName ParentID
1 Root Null
2 News 1
3 Horoscope 1
4 Sports 2
5 National 2
6 Daily 3
7 Aries 6
8 Weekly 3
9 Aries 8
次のようにツリー構造のjsonデータを作成しようとしています:
[{
"id":1,
"text":"Root",
"children":[{
"id":2,
"text":"News",
"state":"closed",
"children":[{
"id":4,
"text":"Sports"
},{
"id":5,
"text":"National"
}]
},{
"id":3,
"text":"Horoscope",
"children":[{
"id":6,
"text":"Daily",
"children":[{
"id":7,
"text":"Aries"
}],
},{
"id":8,
"text":"Weekly",
"children":[{
"id":9,
"text":"Aries"
}],
}
}]
}]
すべてのカテゴリとサブカテゴリをレンダリングする次の関数があります
public function categoryData($parent)
{
$model=new Category();
$cat=$model->findAllByAttributes(array('ParentCategoryID'=>$parent,'Status'=>2));
$category = array();
foreach($cat as $record)
{
global $category;
$category['id'][$record->CategoryID] = $record->CategoryID;
$category['text'][$record->CategoryID] = $record->CategoryName;
// $category['children'][$record->CategoryID] = array();
//$names[] = $record->CategoryName;
$this->categoryData($record->CategoryID);
}
//array_push($category['children'][$record->ParentCategoryID], $category['children'][$record->CategoryID]);
return $category;
}
問題: しかし、上記のアクションではカテゴリが配列に適切な形式で配置されないため、json_encode($category) 関数を適用して上記の json データ形式を作成できます。
再帰関数を使用してツリー構造の配列にカテゴリ データを配置する方法は?