PHP如何从JSON中访问数据?
问:有一段JSON字符串,用PHP如何访问JSON中的数据?
JSON:
{
"type": "donut",
"name": "Cake",
"toppings": [
{ "id": "5002", "type": "Glazed" },
{ "id": "5003", "type": "Chocolate" }
]
}
答:在PHP中可以使用json_decode()
如:$data = json_decode($json);
就可以使用$data->type
或者$data['type']
访问。