翻出一篇老文章:php文本站内全文检索
2010-12-17文字大小:大中小
/****************************************************
原作者: uchinaboy
修改:lingshidao
特征
:无需mysql支持;速度快;无需配置
路径,放在哪级目录下,就搜索该目录和子目录;能够
搜索一切文本类型的文件;显示文件相关
内容;重要
词自动高亮显示。
修改内容:添加
了自动分页和风格配置
文件。
搜索框代码(假如
放在search.php相似
目录下,无需修改):
****************************************************/
require ("template.php");
echo "
";
echo "检索结果";
echo "
";
if (function_exists("set_time_limit") && !get_cfg_var('safe_mode')){
set_time_limit(600);}
function get_msg($path) {
global $key, $i;
$handle = opendir($path);
while ($filename = readdir($handle)) {
//echo $path."/".$filename."
";
$newpath = $path."/".$filename;
if (is_file($newpath)) {
$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 "
".$newpath."
";
get_msg($path."/".$filename);
}
}
closedir($handle);
return $i;
}
function match_show($key, $msg, $newpath, $filename) {
global $i;
$key = chop($key);
if($key) { $check_type = preg_match("/\.html?$/", $filename);
if($check_type) {$title = getHtmlTitle($msg);}
$msg = preg_replace("/
$msg = preg_replace("/<[^>]+>/", "", $msg);
$value = preg_match("/.*$key.*/i", $msg, $res);
if($value) {
if($title) {$m = $title;} else {$m = $filename;}
$i++;
$link = $newpath;
echo "$i.◆$m
";
}
}else {
echo "请输入重要