dsen53898 2016-07-20 20:01
浏览 42
已采纳

JSON天气以PHP格式提供

I am trying to display this weather information by pulling it from a JSON feed in PHP. I can't figure out why it is not printing. Here is the code:

$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, '&deg; C</p>';
echo '<p><strong>Min:</strong> ', $data->main->temp_min, '&deg; C</p>';
echo '<p><strong>Max:</strong> ', $data->main->temp_max, '&deg; C</p>';

?>

My output is something like:

()

Temperature:

Current: ° C

Min: ° C

Max: ° C

  • 写回答

2条回答 默认 最新

  • dqlm80253 2016-07-20 20:17
    关注

    There is a problem with the way you parse the output from the API. Check bellow -

        $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, '&deg; C</p>';
        echo '<p><strong>Min:</strong> ', $data->list[0]->main->temp_min, '&deg; C</p>';
        echo '<p><strong>Max:</strong> ', $data->list[0]->main->temp_max, '&deg; C</p>';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 为什么apriori的运行时间会比fp growth的运行时间短呢
  • ¥15 帮我解决一下膳食平衡的线性规划模型的数据实例
  • ¥40 万年历缺少农历,需要和阳历同时显示
  • ¥250 雷电模拟器内存穿透、寻基址和特征码的教学
  • ¥200 比特币ord程序wallet_constructor.rs文件支持一次性铸造1000个代币,并将它们分配到40个UTXO上(每个UTXO上分配25个代币),并设置找零地址
  • ¥15 关于Java的学习问题
  • ¥15 如何使用chatgpt完成文本分类任务?
  • ¥15 已知速度v关于位置s的等式,怎么转化为已知位置求速度v的等式
  • ¥15 我有个餐饮系统,用wampserver把环境配置好了,但是后端的网页却进去,是为什么,能不能帮远程一下?
  • ¥15 R运行没有名称为"species"的插槽对于此对象类"SDMmodelCV"