码迷,mamicode.com
首页 > 其他好文 > 详细

获取天气信息

时间:2018-08-09 13:55:22      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:turn   func   weather   nec   pre   span   class   enc   contents   

//获取天气
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);
}

 

获取天气信息

标签:turn   func   weather   nec   pre   span   class   enc   contents   

原文地址:https://www.cnblogs.com/zrn-php/p/9447913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!