教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 PHP百度天气预报小偷程序

PHP百度天气预报小偷程序

发布时间:2018-05-03   编辑:jiaochengji.com
本文介绍了php使用百度天气实现天气预报的一段小程序,有需要的朋友参考下。

例子,php百度天气预报小偷程序代码。
以 北京天气 为范例。
效果:
php百度天气预报小偷程序

代码:
 

复制代码 代码示例:
<?php
/*
* Author : Codenow
* Email : Codenow@qq.com
* Blog : http://hi.baidu.com/codenow
*/
$url = "http://www.baidu.com/s?wd=北京天气";
$content = file_get_contents($url);
preg_match_all('/id=\"1\"><tr>(.+?)<div class=\"al_wlink\">/si',$content,$result);
$Weather = $result[1][0];
$Weather= trim($Weather);
$Weather= str_replace("\n","",$Weather);
$Weather= str_replace("<td class=\"f\">","",$Weather);
print "$Weather";
?>

您可能感兴趣的文章:
PHP百度天气预报小偷程序
php百度天气小偷实现代码
PHP调用百度天气接口API实现查询实时天气
跟我学小偷程序教程之小偷原理(第一天)
Win 7系统中天气工具“您所在的地区无法使用服务”解决方法
PHP数据采集程序采集天气网数据实例演示
Google API 获取当前天气信息的php代码
php ajax实现无刷新获取天气状态
python爬虫如何看不同城市的天气?
python爬虫:天气数据的分析

关键词: PHP接口  百度天气  小偷程序   
[关闭]
~ ~