PHP
·
发表于 5年以前
·
阅读量:8298
php×¥¼´Ê±¹ÉƱÐÅÏ¢
<?
$file_name="index.htm";
if(is_file($file_name)) {
exec("cat $file_name",$buffer);
for($i=0;$i<count($buffer);$i++) {
if(strstr($buffer[$i],"")) break; //ÕÒµ½ß@Ò»ÐÐ
}
for($j=$i;$j<$i+70;$j++) { //×¥ÒÔÏÂ70ÐÐ
$str.= $buffer[$j];
}
echo $str;
}
£¿>