刚开始学PHP,先编写了一个程序,放在自己的主页上,可以显示天气预报,当然还很不完善,希望大家给提意见。程序如下: <? $fcont=file("http://www.bjmb.gov.cn/today.asp"); $arr=array(); for($i=0;$i<count($fcont);$i++){ $tmp=$fcont[$i]; $tmp=ereg_replace("<br>"," ",$tmp); if(!strstr(strtolower($tmp),"img")){ $tmp=trim(strip_tags($tmp)); } else { $st=ereg_replace("><",">⌒<",$tmp); $stt=split("⌒",$st); foreach($stt as $key => $value){ if(strstr($value,"img") ){ $tmp=$value; $tmp=ereg_replace("src=","width=30 height=30 align=absmiddle src=http://cfan.net.cn/info/",$tmp); if(strstr($tmp,"bt9.jpg") |
关键词: 初学PHP 编写了一个显示天气预报的程序 还望不要见笑。