获取天气信息
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); }
以上是关于获取天气信息的主要内容,如果未能解决你的问题,请参考以下文章