在PHP中使用OpenWeatherMap预测API



我正在尝试从openweathermap显示一个城市的预测。 但我的福尔奇什么也没显示。怎么了?

<?php
$url = "http://api.openweathermap.org/data/2.5/forecast?zip=85080,de&lang=de&APPID=MYKEY";
$contents = file_get_contents($url);
$clima = json_decode($contents, true);
foreach($clima as $data) {
echo $data->list->main->temp_min;
}
?>

json_decode(string, true)的结果是一个关联数组。

<?php
$url = "http://api.openweathermap.org/data/2.5/forecast?zip=85080,de&lang=de&APPID=MYKEY";
$contents = file_get_contents($url);
$clima = json_decode($contents, true);
foreach($clima['list'] as $data) {
echo $data['main']['temp_min'];
}
?>

如果要使用对象语法,请不要将关联设置为true

$clima = json_decode($contents);
foreach($clima->list as $data) {
echo $data->main->temp_min;
}

让我们试试...

<?php
$city    = 'Dhaka';
$country = 'BD';
$url     = 'http://api.openweathermap.org/data/2.5/forecast/daily?q=' . $city . ',' . $country . '&units=metric&cnt=7&lang=en&appid=c0c4a4b4047b97ebc5948ac9c48c0559';
$json    = file_get_contents( $url );
$data    = json_decode( $json, true );
$data['city']['name'];
// var_dump($data );

foreach ( $data['list'] as $day => $value ) {
echo 'Max temperature for day ' . $day
. ' will be ' . $value['temp']['max'] . '<br />';
echo '<img src="http://openweathermap.org/img/w/' . $value['weather'][0]['icon'] . '.png"
class="weather-icon" />';

}

您使用了与 true关联的参数json_decode

所以$data更像是一个数组而不是一个对象。

根据该示例(类似于您的 url(,您应该使用方括号语法访问您的值:

$data['main']['temp_min'];

相关内容

  • 没有找到相关文章

最新更新