我想在类别中对子类别进行分组。子类别可以包含任意数量的元素,例如:
输出:
category #1
item 1
item 2
item 3
category #2
item 1
item 2
item 3
item 4
item 5
我最初的计划是使用这样的多维数组:
$categories = array(
'cateogy_name_1' => array(
1 => 'item_1',
2 => 'item_2',
...
),
'cateogy_name_2' => array(
1 => 'item_1',
2 => 'item_2',
3 => 'item_3',
4 => 'item_4',
5 => 'item_5',
...
),
....
);
到目前为止我的代码...
$categories = array();
$result= mysql_query("SELECT category_id, product_name FROM `table` GROUP BY
`catagory_id` ORDER BY `catagory_id`"); //retreive all categories and sub-categories
while($row = mysql_fetch_array($result))
{
//Get Categories and create arrays inside a single array
//I'm stuck here, not sure how to initialize the multi-dimensional array
}
foreach // Put all subcategories within the correct categories
// I'm stuck here. How would I get the subcategories and put
// them into the correct category?
好的,所以我的问题是:
如何选择类别并将它们放入多维数组中自己的数组中?
然后如何将子类别放入适当的类别数组中?
最后,如何打印出可以包含任意数量子类别的整个多维数组?