在PHP 中存取JSON 數據:提取溫度數據
這個PHP 問題旨在提取特定數據,即「TemperatureMin」和「TemperatureMax ”, “來自JSON 檔案。函數來檢索檔案的內容。 >
或者,您可以使用foreach 循環迭代該數組:
<code class="php">$str = file_get_contents('file.json'); $json = json_decode($str, true); // decode JSON into associative array $temperatureMin = $json['daily']['data'][0]['temperatureMin']; $temperatureMax = $json['daily']['data'][0]['temperatureMax'];</code>
此方法提供了一種在PHP中存取和提取 JSON 檔案中特定資料的綜合方法。
以上是如何在 PHP 中從 JSON 檔案中提取溫度資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!