欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 利用Google API 获取当前天气信息代码_PHP教程

程序员文章站 2022-05-26 13:25:06
...
本文章分享一款只要三行就能取得你指定城市天气信息的php+google api实现代码,有需要的朋友可以参考一下。
代码如下 复制代码


$xml = simplexml_load_file('http://www.google.com/ig/api?weather=长沙');
$information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition");
echo $information[0]->attributes();

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/631654.htmlTechArticle本文章分享一款只要三行就能取得你指定城市天气信息的php+google api实现代码,有需要的朋友可以参考一下。 代码如下 复制代码 ? $xml = si...