PHP百度天气预报小偷程序

发布时间:2020-08-25编辑:脚本学堂
本文介绍了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";
?>