最佳答案
这是一个一般的参考问题和回答,涵盖了许多永无止境的“如何访问JSON中的数据?”问题。这里将处理在PHP中解码JSON和访问结果的基本知识。
我有JSON:
{
"type": "donut",
"name": "Cake",
"toppings": [
{ "id": "5002", "type": "Glazed" },
{ "id": "5006", "type": "Chocolate with Sprinkles" },
{ "id": "5004", "type": "Maple" }
]
}
我如何解码这在PHP和访问结果数据?