這是一個通用參考問題和答案,涵蓋許多永無止境的「如何存取 JSON 中的資料?」問題。它在這裡處理在 PHP 中解碼 JSON 並訪問結果的廣泛基礎知識。
我有 JSON:
{ "type": "donut", "name": "Cake", "toppings": [ { "id": "5002", "type": "Glazed" }, { "id": "5006", "type": "Chocolate with Sprinkles" }, { "id": "5004", "type": "Maple" } ] }
如何在 PHP 中對其進行解碼並存取結果資料?
在此範例中,json_decode() 用於將 JSON 資料解碼為 PHP 關聯數組。然後,您可以像存取任何 PHP 數組一樣存取該數組的各個元素。