获取天气信息

Posted zrn-php

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取天气信息相关的知识,希望对你有一定的参考价值。

//获取天气
function getweather($city){  //传入需要查询的城市
    $ch = curl_init();
    $timeout = 5;
    curl_setopt($ch, CURLOPT_URL, "http://wthrcdn.etouch.cn/weather_mini?city=$city");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    //        curl_setopt($ch,CURLOPT_ENCODING ,‘gzip‘);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $file_contents = curl_exec($ch);
    curl_close($ch);

    return gzdecode($file_contents);
}

 

以上是关于获取天气信息的主要内容,如果未能解决你的问题,请参考以下文章

如何获取天气预报的wsdl

python 获取天气信息

用JS怎样显示自动获取城市和天气预报

android端免费获取天气信息的服务器接口有么

调用阿里API获取城市天气信息

调用阿里API获取城市天气信息