PHP格式的mysql结果变成了json

时间:2016-07-19 18:37:36

标签: php mysql json

因为这个原因,我一整天都在打我的脑袋。 enter image description here

enter image description here

如何将上图中的结果转换为json格式,如下所示

{
        "name": "João Batista Da Silva Júnior",
        "y": "9.83",
        "drilldown": "João Batista Da Silva Júnior",
        "data": [
            [
                "assiduidade",
                10
            ],
            [
                "normas",
                9
            ],
            [
                "eficiencia",
                10
            ],
            [
                "relacionamento",
                10
            ],
            [
                "iniciativa",
                10
            ],
            [
                "visao",
                10
            ]
        ]
    }
]

}

我正在尝试此代码,但它不会重现所需的格式。

    $info["aval"] = array();
    while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
        extract($row);
        $info2 = ['name' => $auxiliar, 'y' => $media, 'drilldown' => $auxiliar, 'data' => [[$topico, floatval($nota)]]];
        $info["aval"][] = $info2;
    }

0 个答案:

没有答案