使用 PHP 提取和存取 JSON 數據
P粉448346289
P粉448346289 2023-08-28 11:54:39
0
1
434
<p><br /></p><blockquote> <p>這是一個通用參考問題和答案,涵蓋許多永無止境的「如何存取 JSON 中的資料?」問題。它在這裡處理在 PHP 中解碼 JSON 並訪問結果的廣泛基礎知識。 </p> </blockquote> <p>我有 JSON:</p> <pre class="brush:php;toolbar:false;">{ "type": "donut", "name": "Cake", "toppings": [ { "id": "5002", "type": "Glazed" }, { "id": "5006", "type": "Chocolate with Sprinkles" }, { "id": "5004", "type": "Maple" } ] }</pre> <p>如何在 PHP 中解碼並存取結果資料? </p>
P粉448346289
P粉448346289

全部回覆(1)
P粉681400307
<?php
$jsonData = '{
    "type": "donut",
    "name": "Cake",
    "toppings": [
        { "id": "5002", "type": "Glazed" },
        { "id": "5006", "type": "Chocolate with Sprinkles" },
        { "id": "5004", "type": "Maple" }
    ]
}';

// Decode the JSON
$data = json_decode($jsonData, true);

// Access the data
$type = $data['type'];
$name = $data['name'];
$toppings = $data['toppings'];

// Access individual topping details
$firstTopping = $toppings[0];
$firstToppingId = $firstTopping['id'];
$firstToppingType = $firstTopping['type'];

// Print the data
echo "Type: $type\n";
echo "Name: $name\n";
echo "First Topping ID: $firstToppingId\n";
echo "First Topping Type: $firstToppingType\n";
?>

在此範例中,json_decode() 用於將 JSON 資料解碼為 PHP 關聯數組。然後,您可以像存取任何 PHP 數組一樣存取該數組的各個元素。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!