0

我在 MySql 中有 2 个表

部分

ID       Name
=====================
1        Section1
2        Section2

类别

ID        SectionID     Name
=========================================
1           1           Category1
2           1           Category2
3           2           Category3

如何从 PHP 解码 JSON 以获得如下所示的结果:

{sections:[
{sectionName: "Section1", categoryList: [{categoryName: "category1"},{categoryName: "category2"}]},
{sectionName : "Section1", categoryList: [{categoryName: "category3"}]}
]}

这就是我现在所拥有的:
$sql_section = "select * from section";
$sql_category = "从类别中选择 *";

有什么建议么?谢谢。

4

1 回答 1

0

假设你的意思是编码。您只需要创建一个与您想要的 json 结构相同的数组,然后使用 $json = json_encode($my_array)

于 2012-08-16T06:50:21.813 回答