翻出一篇老文章:php文本站內(nèi)全文檢索
發(fā)表時間:2023-07-17 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]<?php/**************************************************** 原作者: uchinaboy修改:lingshidao特點:無需mysql...
<?php
/****************************************************
原作者: uchinaboy
修改:lingshidao
特點:無需mysql支持;速度快;無需設(shè)置路徑,放在哪級目錄下,就搜索該目錄和子目錄;可以搜索一切文本類型的文件;顯示文件相關(guān)內(nèi)容;關(guān)鍵詞自動高亮顯示。
修改內(nèi)容:增加了自動分頁和風(fēng)格設(shè)置文件。
搜索框代碼(如果放在search.php相同目錄下,無需修改):<form method="post" action="search.php"><input type="text" name="key" size=40 value="">
<input type="submit" value="檢索"></form>
****************************************************/
require ("template.php");
echo "<p align=\"center\">";
echo "檢索結(jié)果";
echo "</p><hr>";
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."<br>";
$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 "<BR><BR><BR>".$newpath."<BR><BR><BR>";
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("/<style>.+<\/style>/is", "", $msg);
$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.◆<a href=\"$link\">$m</a><BR><BR>";
}
}else {
echo "請輸入關(guān)鍵詞";
exit;
}
}
function getHtmlTitle($msg) {
/* Locate where <title> is located in html file. */
$lBound = strpos($msg, '<title>') + 7; //7 is the lengh of <title>.
if ($lBound < 1)
return;
/* Locate where </TITLE> is located in html file. */
$uBound = strpos($msg, '</title>', $lBound);
if ($uBound < $lBound)
return;
/* Clean HTML and PHP tags out of $title with the madness below. */
$title = ereg_replace("[\t\n\r]", '', substr($msg, $lBound, $uBound - $lBound));
$title = trim(strip_tags($title));
if (strlen($title) < 1) //A blank title is worthless.
return;
return $title;
}
$i = get_msg(".");
echo "<hr><p align=\"center\">";
echo " 已經(jīng)搜索到了 $i 條信息";
?>