📄 cs.php
字号:
<?php/**版权所有 bigfat<bigfat@2911.net>*本程序为一个天气预报小偷程序 偷的是问天网的天气预报*有6种天气可以选择*你可以免费使用 但请保存版权 *不要将本程序随意传播*/<html><head><title>天气预报</title><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><link rel="stylesheet" href="css.css"></head><body background="bg.gif"><center><?phpfunction showfc($filename,$start,$end,$jt){ $txt=file($filename); $msg=str_replace("<b><font color=\"#0000FF\" size=\"2\">","",$txt[243]); $msg=str_replace("<font color=\"#FF0000\" size=\"3\">","",$msg); $msg=str_replace("</font>","",$msg); $msg2=str_replace("</font><font color=\"#FF0000\"><b><font size=\"2\">","",$txt[244]); $msg2=str_replace("</font></b></font></b>","",$txt[244]); $msg3=str_replace("<TD align=left valign=top height=20> <b>","",$txt[249]); $msg3=str_replace("</b></TD>","",$txt[249]); $msg=$msg . $msg2 . $msg3; echo"$msg"; echo"<table border=\"0\" cellspacing=\"1\" bordercolor=\"#FF6317\" bgcolor=#FF6317 width=80% style=\"WORD-BREAK: break-all;\">"; echo"<tr><td bgcolor=#FF6317>城市</td><td bgcolor=#FF6317>天气</td><td bgcolor=#FF6317>温度</td><td bgcolor=#FF6317>风向</td><td bgcolor=#FF6317>风力</td></tr>"; for($i=$start;$i<=$end;$i=$i+$jt){ $txt[$i]=str_replace("onmouseover=\"drawcitys('","",$txt[$i]); $txt[$i]=str_replace("'); return true;\"","",$txt[$i]); $fcs=explode("<br>",$txt[$i]); $fcs[0]=str_replace("城市:","",$fcs[0]); $fcs[1]=str_replace("天气:","",$fcs[1]); $fcs[2]=str_replace("温度:","",$fcs[2]); $fcs[3]=str_replace("风向:","",$fcs[3]); if($fcs[3]=="") $fcs[3]="没有"; $fcs[4]=str_replace("风力:","",$fcs[4]);echo"<tr><td bgcolor=#ffb73d>$fcs[0]</td><td bgcolor=#ffb73d>$fcs[1]</td><td bgcolor=#ffb73d>$fcs[2]</td><td bgcolor=#ffb73d>$fcs[3]</td><td bgcolor=#ffb73d>$fcs[4]</td>";}}echo"<a href=\"$PHP_self?sort=1\">全国24小时早间城市天气预报</a> ";echo"<a href=\"$PHP_self?sort=2\">全国24小时午间城市天气预报</a> ";echo"<a href=\"$PHP_self?sort=3\">全国24小时晚间城市天气预报</a><br>";echo"<a href=\"$PHP_self?sort=4\">全国48小时晚间城市天气预报</a> ";echo"<a href=\"$PHP_self?sort=5\">全国72小时晚间城市天气预报</a> ";echo"<a href=\"$PHP_self?sort=6\">国外24小时晚间城市天气预报</a><BR><br><br>";if(empty($sort)){$sort=1;}if($sort==1){ showfc("http://www.tq121.com.cn/forecast/fc06024.php",379,767,4);}elseif($sort==2){ showfc("http://www.tq121.com.cn/forecast/fc12024.php",379,515,4);}elseif($sort==3){ showfc("http://www.tq121.com.cn/forecast/fc20024.php",379,511,4);}elseif($sort==4){ showfc("http://www.tq121.com.cn/forecast/fc20048.php",379,511,4);}elseif($sort==5){ showfc("http://www.tq121.com.cn/forecast/fc20072.php",379,511,4);}elseif($sort==6){ showfc("http://www.tq121.com.cn/forecast/ff20024.php",379,559,4);}echo("</table>");?></center>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -