以下代码对我不起作用。
<?php
$json_string = file_get_contents("http://api.wunderground.com/api/7ec5f6510a4656df/geolookup/forecast/q/40121 .json");
$parsed_json = json_decode($json_string);
$temp = $parsed_json->{'forecast'}->{'date'};
echo "Current date is ${temp}\n";
?>
当我这样说时它会起作用:
$temp = $parsed_json->{'location'}->{'city'};
我在这里想念什么哈哈