马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
也得学会了PHP。然后再学,见异思迁是最不可取的,狗熊掰玉米就是这个道理,如果经常中途放弃,只能是一无所获,还浪费了N多的时间和经历,得不偿失,最重要的是,你会被别人瞧不起。 - <?php /**************************************************** program : Spr2[search_html] Author : uchinaboy E-mail : uchinaboy@163.com QQ : 16863798 Date : 2001-8-9 ****************************************************/ //require("config.inc.php"); function get_msg($path) { global $key, $i; $handle = opendir($path); while ($filename = readdir($handle)) { //echo $path."/".$filename."<br>"; $newpath = $path."/".$filename; $check_type = preg_match("/\.html?$/", $filename); if (is_file($newpath) && $check_type) { $fp = fopen($newpath, "r"); $msg = fread($fp, filesize($newpath)); fclose($fp); match_show($key, $msg, $newpath, $filename); } if (is_dir($path."/".$filename) && ($filename != ".") && ($filename != "..")) { //echo "<BR><BR><BR>".$newpath."<BR><BR><BR>"; get_msg($path."/".$filename); } } closedir($handle); return $i; } function match_show($key, $msg, $newpath, $filename) { global $key, $i; $key = chop($key); if ($key) { $msg = preg_replace("/<style>.+<\/style>/is", "", $msg); $msg = str_replace(" ", "", $msg); $msg = preg_replace("/<[^>]+>/", "", $msg); $value = preg_match("/.*$key.*/i", $msg, $res); if ($value) { $res[0] = preg_replace("/$key/i", "<FONT SIZE=\"2\" COLOR=\"red\">$key</FONT>", $res[0]); $i++; $link = $newpath; print "<a href=\"$link\">$filename</a><BR>"; print $res[0]."<BR><br>"; } }else { echo "请输出
关头
词"; exit; } } $i = get_msg("."); echo "<BR><BR>".$i."<BR><BR><BR>"; ?>
复制代码 <P style="TEXT-INDENT: 2em">
PHP于1994年由Rasmus Lerdorf创建,刚刚开始是Rasmus Lerdorf为了要维护个人网页而制作的一个简单的用Perl语言编写的程序。 |