您的位置:

php免费调用天气,php获取天气

本文目录一览:

php的socket调用可以实现查天气吗

本文分享下,php调用yahoo与sina的天气api,实现实时显示天气预报的代码,有兴趣的朋友研究下吧。

yahoo 天气预报

地址

代码:

复制代码代码示例:

?php

header ( 'Content-Type: text/html; charset = utf-8' );

class weather {

static $url = ';w=';

static $city = 'Beijing'; //默认城市北京 这里要注意的是 city 要填拼音 我试过用中文有好几个地区都调用不到

static $weatherXML = '';

static $woeid_file = "woeid";

static $file_path = "data/";

/**

* 获得远程xml并缓存到本地

*/

static public function getXML($city = null) {

if ($city != null){

self::$city = $city;

}

self::$weatherXML = self::$file_path . md5(self::$city) . '-weather.xml';

if (file_exists( self::$weatherXML )) {

$fileTime = filemtime ( self::$weatherXML );

$stater = time () - $fileTime - 60 * 60 * 2;

if ($stater 0) {

return true;

}

}

//获取woeid

$woeid = self::getWOEID();

self::$url = self::$url . $woeid[0];

//获取当天 天气

$XML = self::vget(self::$url);

//保存当天 天气到文件

self::cacheXML($XML);

self::analysisXML($XML);

}

static public function analysisXML($simple) {

$p = xml_parser_create();

xml_parse_into_struct($p, $simple, $vals, $index);

xml_parser_free($p);

//本周天气

$weekindex = $index['YWEATHER:FORECAST'];

$week = array();

foreach($weekindex as $k=$v){

$week[$k] = $vals[$v]['attributes'];

}

unset($index);

unset($vals);

print_r($week);

/*

yweather:forecast day="Wed" date="18 Sep 2013" low="20" high="32" text="Sunny" code="32"/

* day 星期

* date 日期

* low 最低温度

* high 最高温度

* test 天气状态

* code 天气图标

*/

}

/*

* 取得地区WOEID码

*/

static private function getWOEID(){

static $woeid = array();

if(isset($woeid[self::$city])){

return $woeid[self::$city];

}

if (file_exists( self::$file_path . self::$woeid_file )) {

$woeidSTR = file_get_contents(self::$file_path . self::$woeid_file);

$woeid = json_decode($woeidSTR , true);

if(isset($woeid[self::$city])){

return $woeid[self::$city];

}

}

$geoPlaces = "'".self::$city."%20CH'";

$XML = simplexml_load_file( $geoPlaces );

if(isset($XML-results-place[0])){

$rs = $woeid[self::$city] = $XML-results-place[0]-woeid;

//保存到文件

$woeidSTR = json_encode($woeid);

file_put_contents(self::$file_path . self::$woeid_file, $woeidSTR);

return $rs;

}else{

//如果找不到城市 woeid 默认城市就改为 北京

self::$city = "Beijing";

return self::getWOEID();

}

}

/**

* 创建xml缓存

* @param $contents 要缓存的内容

*/

static private function cacheXML($contents) {

$contents = str_ireplace ( '?xml version="1.0"?', "?xml version=\"1.0\"? \n", $contents );

$contents = mb_convert_encoding ( $contents, 'utf-8', 'gbk' );

file_put_contents ( self::$weatherXML, $contents ) or die ( '没有写权限' );

}

/**

* 模拟获取内容函数

* @param type $url

* @return type

*/

static private function vget($url) {

$user_agent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322)";

$curl = curl_init (); // 启动一个CURL会话

curl_setopt ( $curl, CURLOPT_URL, $url ); // 要访问的地址

curl_setopt ( $curl, CURLOPT_SSL_VERIFYPEER, 0 ); // 对认证证书来源的检查

curl_setopt ( $curl, CURLOPT_SSL_VERIFYHOST, 1 ); // 从证书中检查SSL加密算法是否存在

curl_setopt ( $curl, CURLOPT_USERAGENT, $user_agent ); // 模拟用户使用的浏览器

@curl_setopt ( $curl, CURLOPT_FOLLOWLOCATION, 1 ); // 使用自动跳转

curl_setopt ( $curl, CURLOPT_AUTOREFERER, 1 ); // 自动设置Referer

curl_setopt ( $curl, CURLOPT_HTTPGET, 1 ); // 发送一个常规的Post请求

curl_setopt ( $curl, CURLOPT_TIMEOUT, 120 ); // 设置超时限制防止死循环

curl_setopt ( $curl, CURLOPT_HEADER, 0 ); // 显示返回的Header区域内容

curl_setopt ( $curl, CURLOPT_RETURNTRANSFER, 1 ); // 获取的信息以文件流的形式返回

$tmpInfo = curl_exec ( $curl ); // 执行操作

if (curl_errno ( $curl )) {

curl_close ( $curl ); // 关闭CURL会话

die('Errno' . curl_error ( $curl )) ;

}

curl_close ( $curl ); // 关闭CURL会话

return $tmpInfo; // 返回数据

}

}

weather::getXML("Changsha");

PHP调用2345天气问题

$var是一个数组,weatherid是数组中的一个元素。在此之前,一般会先给$var中的每一个元素赋值,例如:$var['weatherid'] = 300,那么整个URL其实就是:

如何使用PHP调用API接口实现天气查询功能

最近在做微信公众平台测试时,想在里面子菜单上添加查询未来几天(包括今天)天气的功能,就查找了下好用的天气预报查询接口API,使用比较多的有:国家气象局天气接口、新浪天气预报接口、百度天气预报接口、google天气接口、Yahoo天气接口等等,我使用的是百度提供的免费天气查询接口API,下面与大家分享下...

1、查询方式:

百度提供的是根据纬度和城市名查询天气情况

2、接口事例:

3、接口参数说明:

4、返回结果说明:

5、

//城市名

$city = '上海';

//对json格式的字符串进行编码

$arr =json_decode($str,TRUE);

print_r($atr);

//城市名

   $city = '上海';

 

   //获取json格式的数据

   $str =file_get_contents("".$city."output=jsonak=5slgyqGDENN7Sy7pw29IUvrZ");

   //对json格式的字符串进行编码

   $arr =json_decode($str,TRUE);      

   print_r($atr);

6、返回页面的是json编码后的数据:

[plain] view plain copy print?

meta charset="UTF-8"

Array

(

[error] = 0

[status] = success

[date] = 2014-03-17

[results] = Array

(

[0] = Array

(

[currentCity]= 上海

[weather_data]= Array

(

[0]= Array

(

[date] = 周一(今天, 实时:19℃)

[dayPictureUrl] =

[nightPictureUrl] =

[weather] = 晴

[wind] = 西南风3-4级

[temperature] = 13℃

)

[1] = Array

(

[date]= 周二

[dayPictureUrl] =

[nightPictureUrl] = 

[weather]= 多云转阴

[wind]= 东北风3-4级

[temperature] = 24 ~ 9℃

)

[2] = Array

(

[date]= 周三

[dayPictureUrl] =

[nightPictureUrl] = 

[weather]= 中雨转小雨

[wind]= 东北风3-4级

[temperature] = 15 ~ 8℃

)

[3] = Array

(

[date]= 周四

[dayPictureUrl] =

[nightPictureUrl] =

[weather]= 多云转晴

[wind]= 北风3-4级

[temperature] = 14 ~ 6℃

)

)

)

)

)

meta charset="UTF-8"

Array

(

   [error] = 0

   [status] = success

   [date] = 2014-03-17

   [results] = Array

       (

           [0] = Array

               (

                   [currentCity]= 上海

                   [weather_data]= Array

                       (

                           [0]= Array

                               (

                                  [date] = 周一(今天, 实时:19℃)

                                  [dayPictureUrl] =

                                  [nightPictureUrl] =

                                   [weather] = 晴

                                  [wind] = 西南风3-4级

                                  [temperature] = 13℃

                               )

                           [1] = Array

                               (

                                   [date]= 周二

                                  [dayPictureUrl] =

                                  [nightPictureUrl] =

                                   [weather]= 多云转阴

                                   [wind]= 东北风3-4级

                                  [temperature] = 24 ~ 9℃

                               )

                           [2] = Array

                               (

                                   [date]= 周三

                                  [dayPictureUrl] =

                                  [nightPictureUrl] =

                                   [weather]= 中雨转小雨

                                   [wind]= 东北风3-4级

                                  [temperature] = 15 ~ 8℃

                               )

                           [3] = Array

                               (

                                   [date]= 周四

                                  [dayPictureUrl] =

                                   [nightPictureUrl] =

                                   [weather]= 多云转晴

                                   [wind]= 北风3-4级

                                  [temperature] = 14 ~ 6℃

                               )

                       )

               )

       )

)

7、PHP中自带了处理json格式字符串的内置函数,下面做一个事例,并给出完整代码:

[php] view plain copy print?

metacharset="UTF-8"

?php

//城市名

$city = '上海';

//获取json格式的数据

$str = file_get_contents("".$city."output=jsonak=5slgyqGDENN7Sy7pw29IUvrZ");

//对json格式的字符串进行编码

$arr = json_decode($str,TRUE);

echo "城市:".$arr['results'][0]['currentCity']." 日期:".$arr['date']."br /br /";

foreach($arr['results'][0]['weather_data']as $val)

{

echo $val['date']."br/";

echo "天气:{$val['weather']}br/";

echo "风向:{$val['wind']}br/";

echo "温度:{$val['temperature']}br/br /";

}

?

metacharset="UTF-8"

?php

   //城市名

   $city = '上海';

 

   //获取json格式的数据

   $str = file_get_contents("".$city."output=jsonak=5slgyqGDENN7Sy7pw29IUvrZ");

   //对json格式的字符串进行编码

   $arr = json_decode($str,TRUE);      

   echo "城市:".$arr['results'][0]['currentCity']." 日期:".$arr['date']."br /br /";

   foreach($arr['results'][0]['weather_data']as $val)

   {

       echo $val['date']."br/";

       echo "天气:{$val['weather']}br/";

       echo "风向:{$val['wind']}br/";

       echo "温度:{$val['temperature']}br/br /";

   }

?

8、返回的内容如下:

PHP 页面调用天气预报web服务 我想在一个PHP页面直接调用现成的webservice

完全可以。前提是要打开soap扩展,调用方法如下:

?php

$client = new SoapClient('');

$parm=array('theCityCode'='三亚','theUserID'='');

$result=$client-getWeather($parm);

print_r($result);

?

php获取天气预报的代码

?php    

$URLStyle = "";    

$chinaURL = sprintf($URLStyle, "china");    

$chinaStr = file_get_contents($chinaURL);    

$chinaObj = simplexml_load_string($chinaStr);    

$chinaObjLen = count($chinaObj-city);    

echo "chinaObjLen = ".$chinaObjLen."\n";    

for ($i=0;$i$chinaObjLen;$i++){    

//遍历省一级节点,共37个    

        $level1 = $chinaObj-city[$i]["pyName"];    

        $shengjiURL = sprintf($URLStyle, $level1);    

        $shengjiStr = file_get_contents($shengjiURL);    

        //echo $shengjiStr;    

        $shengjiObj = simplexml_load_string($shengjiStr);     

        $shengjiObjLen = count($shengjiObj-city);    

//      echo $chinaObj-city[$i]["quName"];    

//      echo " ".$shengjiObjLen."\n";    

        for ($j=0;$j$shengjiObjLen;$j++){    

        //遍历市一级节点    

                $level2 = $shengjiObj-city[$j]["pyName"];    

                $shijiURL = sprintf($URLStyle, $level2);    

                $shijiStr = file_get_contents($shijiURL);    

                //echo $shijiStr;    

                $shijiObj = simplexml_load_string($shijiStr);     

             //直辖市和海南、台湾、钓鱼岛等没有县级节点    

                if(!$shijiObj){    

                        echo "WARNNING: not exsit next level node. - ".$level1."-".$shijiURL."\n";    

                        echo '  "'.$shengjiObj-city[$j]["cityname"].'" = ';    

                        echo $shengjiObj-city[$j]["url"].",\n";    

                        continue;    

                }    

                $shijiObjLen = count($shijiObj-city);    

                //echo $shengjiObj-city[$j]["cityname"]."  ";    

                //echo $shijiObjLen."\n";    

                for ($k=0;$k$shijiObjLen;$k++){    

                //遍历县一级节点    

                        $xianji_code = $shijiObj-city[$k]["url"];    

                        echo '  "'.$shijiObj-city[$k]["cityname"].'" = ';    

                        echo $shijiObj-city[$k]["url"].",\n";    

                        //echo $xianji_code."\n";     

                }    

        }    

}           

//print_r($chinaObj);    

?

通过XML接口根节点递归获得全国几千个县以上城市cide code的代码

php怎么抓取天气预报?

可以借由php的api或者preg_match_all偷偷撷取去达成目的

这里给你一段我给台湾朋友有一段源码

?php

header(\"Content-Type: text/html; charset=utf-8\");

function getWeather($city){

$toURL = \"

$city.htm\";

$post = array();

$ch = curl_init();

$options = array(

CURLOPT_REFERER='',

CURLOPT_URL=$toURL,

CURLOPT_VERBOSE=0,

CURLOPT_RETURNTRANSFER=true,

CURLOPT_USERAGENT=\"Mozilla/4.0 (compatible;)\",

CURLOPT_POST=true,

CURLOPT_POSTFIELDS=http_build_query($post),

);

curl_setopt_array($ch, $options);

$result = curl_exec($ch); 

curl_close($ch);

//连接中央气象局

echo 'pre';

preg_match_all('/table class=\"FcstBoxTable01\" [^]*[^]*(.*)\/div/si',$result, $matches, PREG_SET_ORDER);

preg_match_all('/td nowrap=\"nowrap\" [^]*[^]*(.*)\/td/si',$matches[0][1], $m1, PREG_SET_ORDER);

$m2 = explode('/td',$m1[0][1]);

// print_r($m2);//取得每日资料m2[0~6]

$weather = array();

for($i=0;$i=6;$i++){

preg_match_all('/src=[^]*[^](.*)/si',$m2[$i], $m5, PREG_SET_ORDER);//取得天气图档

$m6 = explode('\"',$m5[0][0]);

$wi='

($m6[1],'\.\./\.\./');

$wtitle = $m6[3];

     print_r($wtitle);

$weather[$i]['date'] = date(\"m-d\", mktime(0, 0, 0, date(\"m\"), date(\"d\")+$i,date(\"Y\")));

$weather[$i]['temperature'] = trim(strip_tags($m2[$i]));

$weather[$i]['title'] = $wtitle;

$weather[$i]['img'] = $wi;

}

return($weather);

}

  $weather=getWeather(\"Taipei_City\") ;   

  print_r($weather);

  

// header(\"Location:loc.php\");

?

首先

$toURL = \"\";

这里是读取资料的网址

上面的是台湾中央气象局

preg_match_all('/table class=\"FcstBoxTable01\" [^]*[^]*(.*)\/div/si',$result, $matches, PREG_SET_ORDER);

preg_match_all('/td nowrap=\"nowrap\" [^]*[^]*(.*)\/td/si',$matches[0][1], $m1, PREG_SET_ORDER);

这里是截取台湾中央气象局网页信息table class=\"FcstBoxTable01\" [^]*[^]*(.*)\/div的资料以及td nowrap=\"nowrap\" [^]*[^]*(.*)\/td的资料分别是1天跟1周

$m2 = explode('/td',$m1[0][1]);

// print_r($m2);//取得每日资料m2[0~6]

这里是取得每日的资料

preg_match_all('/src=[^]*[^](.*)/si',$m2[$i], $m5, PREG_SET_ORDER);//取得天气图档

这里是取得天气的图档

$m6 = explode('\"',$m5[0][0]);

$wi='

($m6[1],'\.\./\.\./');

$wtitle = $m6[3];

     print_r($wtitle);

$weather[$i]['date'] = date(\"m-d\", mktime(0, 0, 0, date(\"m\"), date(\"d\")+$i,date(\"Y\")));

$weather[$i]['temperature'] = trim(strip_tags($m2[$i]));

$weather[$i]['title'] = $wtitle;

$weather[$i]['img'] = $wi;

这里是返回的网址,日期,标题,图档等等的资料

  $weather=getWeather(\"Taipei_City\") ;   

  print_r($weather);

然后这里是显示出地区的一周天气预报

结论:就是如果你想从网站上面截取天气预报

在php可以是用preg_match_all(网页的表格table,表格的列数tr,表格的栏位td,或者更加广泛的标签div等等获取)