我试图通过从PHP中的JSON提要中提取这些天气信息来显示。我无法弄清楚它为什么不打印。这是代码:
$url="http://api.openweathermap.org/data/2.5/forecast?q=Albany,usl&APPID=5099c5feb579c7a17b030de0d009282f&units=metric";
$json=file_get_contents($url);
$data=json_decode($json);
echo '<h1>', $data->name, ' (', $data->sys->country, ')</h1>';
// the general information about the weather
echo '<h2>Temperature:</h2>';
echo '<p><strong>Current:</strong> ', $data->main->temp, '° C</p>';
echo '<p><strong>Min:</strong> ', $data->main->temp_min, '° C</p>';
echo '<p><strong>Max:</strong> ', $data->main->temp_max, '° C</p>';
?>
我的输出类似于:
()
温度:
当前:°C
最低:°C
最大:°C
答案 0 :(得分:3)
解析API输出的方式存在问题。检查波纹管 -
$url="http://api.openweathermap.org/data/2.5/forecast?q=Albany,usl&APPID=5099c5feb579c7a17b030de0d009282f&units=metric";
$json=file_get_contents($url);
$data=json_decode($json);
echo '<h1>', $data->city->name, ' (', $data->city->country, ')</h1>';
// the general information about the weather
echo '<h2>Temperature:</h2>';
echo '<p><strong>Current:</strong> ', $data->list[0]->main->temp, '° C</p>';
echo '<p><strong>Min:</strong> ', $data->list[0]->main->temp_min, '° C</p>';
echo '<p><strong>Max:</strong> ', $data->list[0]->main->temp_max, '° C</p>';
答案 1 :(得分:0)
你的结构错了。如果你想看看json的结构如何
echo '<pre>',print_r($data,1),'</pre>';
为你想要的输出
$url="http://api.openweathermap.org/data/2.5/forecast?q=Albany,usl&APPID=5099c5feb579c7a17b030de0d009282f&units=metric";
$json=file_get_contents($url);
$data=json_decode($json);
echo $data->city->name;