在PHP 中從JSON 檔案存取資料
在本指南中,我們將探索如何擷取特定資料元素,即「TemperatureMin」和“TemperatureMax”,來自PHP 中的JSON 檔案。
擷取檔案內容並解碼JSON
首先,使用file_get_contents() 將檔案內容儲存在字串中:
<code class="php">$str = file_get_contents('file.json');</code>
然後,使用json_decode() 將JSON 解碼為關聯數組:
<code class="php">$json = json_decode($str, true); // Associative array</code>
存取特定資料元素
查看數組的內容並確定所需資料的路徑,使用print_r ():
<code class="php">echo '<pre class="brush:php;toolbar:false">' . print_r($json, true) . '';
導航陣列以存取目標資料:
<code class="php">$temperatureMin = $json['daily']['data'][0]['temperatureMin']; $temperatureMax = $json['daily']['data'][0]['temperatureMax'];</code>
或者,您可以迭代使用foreach 循環的陣列:
<code class="php">foreach ($json['daily']['data'] as $field => $value) { // Use $field and $value here }</code>
以上是如何在 PHP 中從 JSON 檔案檢索特定資料元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!