例子,php百度天氣小偷程序。
復制代碼 代碼如下:
<?php
//獲取在百度裡面搜索 xx(地名)天氣 抓取的天氣信息
$url = "http://www.baidu.com/s?wd=%B1%B1%BE%A9%CC%EC%C6%F8"; //此為在百度裡搜 北京天氣 的返回地址
$content = file_get_contents($url);
preg_match_all('/<div id="weat">(.+?)<\/table>/si',$content,$temp);
preg_match_all('/<td>(.+?)<\/td>/si',$temp[1][0],$temp1);
var_dump ($temp1[1][0]);
輸出信息:
string(243) "北京天氣
今天:溫度22℃ - 24℃。白天:多雲, 大陣雨,夜間:多雲。東風2級轉1-2級
明天:溫度23℃ - 28℃。白天:多雲,夜間:多雲。東南風2級"