使用 PHP 从 JSON 文件获取数据

2022-08-30 07:06:05

我正在尝试使用PHP从以下JSON文件中获取数据。我特别想要“temperatureMin”和“temperatureMax”。

这可能很简单,但我不知道该怎么做。我被困在file_get_contents(“file.json”)之后该怎么办。一些帮助将不胜感激!

{
    "daily": {
        "summary": "No precipitation for the week; temperatures rising to 6° on Tuesday.",
        "icon": "clear-day",
        "data": [
            {
                "time": 1383458400,
                "summary": "Mostly cloudy throughout the day.",
                "icon": "partly-cloudy-day",
                "sunriseTime": 1383491266,
                "sunsetTime": 1383523844,
                "temperatureMin": -3.46,
                "temperatureMinTime": 1383544800,
                "temperatureMax": -1.12,
                "temperatureMaxTime": 1383458400,
            }
        ]
    }
}

答案 1

使用 file_get_contents() 获取 JSON 文件的内容:

$str = file_get_contents('http://example.com/example.json/');

现在使用 json_decode() 解码 JSON:

$json = json_decode($str, true); // decode the JSON into an associative array

您有一个包含所有信息的关联数组。若要了解如何访问所需的值,可以执行以下操作:

echo '<pre>' . print_r($json, true) . '</pre>';

这将以可读性好的格式打印出数组的内容。请注意,第二个参数设置为 为了说明输出应返回ed(而不仅仅是打印到屏幕)。然后,您可以访问所需的元素,如下所示:trueprint_r()

$temperatureMin = $json['daily']['data'][0]['temperatureMin'];
$temperatureMax = $json['daily']['data'][0]['temperatureMax'];

或者按照您希望的方式遍历数组:

foreach ($json['daily']['data'] as $field => $value) {
    // Use $field and $value here
}

演示!


答案 2

使用json_decode将 JSON 转换为 PHP 数组。例:

$json = '{"a":"b"}';
$array = json_decode($json, true);
echo $array['a']; // b

推荐