ホームページ >php教程 >php手册 >シンプルなオンサイトHTMLファイル検索プログラム

シンプルなオンサイトHTMLファイル検索プログラム

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBオリジナル
2016-06-21 09:15:571096ブラウズ

程序

    自己写来简单的搜索自己电脑上的技术资料的. 大概的思路就是寻找指定目录下的文本, 然后如果有与关键字相匹配的数据就把文件名返回, 最后把所有搜索结果显示出来. 显示结果类似于baidu/google, 呵呵, 这个是纯粹为了好玩.

 程序代码:

/**
* 文件: search.php
* 功能: 搜索指定目录下的HTML文件
* 创建: 2005-9-23
* 作者: heiyeluren
 */


/* 基本函数 */

//获取目录下文件函数
function getFile($dir)
{
 $dp = opendir($dir);
 $fileArr = array();
 while (!false == $curFile = readdir($dp)) {
  if ($curFile!="." && $curFile!=".." && $curFile!="") {
   if (is_dir($curFile)) {
    $fileArr = getFile($dir."/".$curFile);
   } else {
    $fileArr[] = $dir."/".$curFile;
   }
  }
 }
 return $fileArr;
}

//获取文件内容
function getFileContent($file)
{
 if (!$fp = fopen($file, "r")) {
  die("Cannot open file $file");
 }
 while ($text = fread($fp, 4096)) {
  $fileContent .= $text;
 }
 return $fileContent;
}

//搜索指定文件
function searchText($file, $keyword)
{
 $text = getFileContent($file);
 if (preg_match("/$keyword/i", $text)) {
  return true;
 }
 return false;
}

//搜索出文章的标题
function getFileTitle($file, $default="None subject")
{
 $fileContent = getFileContent($file);
 $sResult = preg_match("/.*<\/title>/i", $fileContent, $matchResult);<br> $title = preg_replace(array("/(<title>)/i","/(<\/title>)/i"), "", $matchResult[0]);<br> if (empty($title)) {<br>  return $default;<br> } else {<br>  return $title;<br> }<br>}</p> <p>//获取文件描述信息<br>function getFileDescribe($file,$length=200, $default="None describe")<br>{<br> $metas = get_meta_tags($file);<br> if ($meta['description'] != "") {<br>  return $metas['description'];<br> }<br> $fileContent = getFileContent($file);<br> preg_match("/(<body.*<\/body>)/is", $fileContent, $matchResult);<br> $pattern = array("/(<[^\x80-\xff]+>)/i","/(<input.*>)+/i", "/(<a.*>)+/i", "/(<img.*>)+/i", "/([<script.*>])+.*([<\/script>])+/i","/&/i","/"/i","/'/i", "/\s/");<br> $description = preg_replace($pattern, "", $matchResult[0]);<br> $description = mb_substr($description, 0, $length)." ...";</p> <p> return $description;<br>}</p> <p>//加亮搜索结果中的关键字<br>function highLightKeyword($text, $keyword, $color="#C60A00")<br>{<br> $newword = "<font color=$color>$keyword</font>";<br> $text = str_replace($keyword, $newword, $text);<br> return $text;<br>}</p> <p>//获取文件大小(KB)<br>function getFileSize($file)<br>{<br> $filesize = intval(filesize($file)/1024)."K";<br> return $filesize;<br>}</p> <p>//获取文件最后修改的时间<br>function getFileTime($file)<br>{<br> $filetime = date("Y-m-d", filemtime($file));<br> return $filetime;<br>}</p> <p>//搜索目录下所有文件<br>function searchFile($dir, $keyword)<br>{<br> $sFile = getFile($dir);<br> if (count($sFile) <= 0) {<br/> return false;<br/> }<br/> $sResult = array();<br/> foreach ($sFile as $file) {<br/> if (searchText($file, $keyword)) {<br/> $sResult[] = $file;<br/> }<br/> }<br/> if (count($sResult) <= 0) {<br/> return false;<br/> } else {<br/> return $sResult;<br/> }<br/>}</P><P><br/>/* 测试代码 */</P><P>//指定要搜索的目录<br/>$dir = "./php_Linux";<br/>//要搜索的关键字<br/>$keyword = "sendmail";</P><P>$fileArr = searchFile($dir, $keyword);<br/>$searchSum = count($fileArr);</P><P>echo "搜索关键字: <b>$keyword</b>   搜索目录: <b>$dir</b>   搜索结果: <b>$searchSum</b><br><hr size=1><br>";</p> <p>if ($searchSum <= 0) { <br/> echo "結果が見つかりません";<br/>} else {<br/> foreach ($fileArr as $file) {<br/> echo "<a href='$file' target=' _blank' >".highLightKeyword(getFileTitle($file), $keyword) .<br> "</a> - ".getFileSize($file)." ".getFileTime($file) .<br> "<br>n<font size=2>".highLightKeyword(getFileDescribe($file), $keyword) .<br> "</font><br><br>";<br> }<br>}</p> <p>?></p> <p> 全く問題ありません独自に生成された静的コンテンツを検索するために使用されますが、プログラムの効率は高くありません。インデックスやキャッシュなどのメカニズムを適切に追加できれば、プログラムはさらに面白くなると思います。 </p> <center> </center> <p style="width:100%;text-align:center;margin:10px 0"> <br><br></p></div><div class="nphpQianMsg"><div class="clear"></div></div><div class="nphpQianSheng"><span>声明:</span><div>この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。</div></div></div><div class="nphpSytBox"><span>前の記事:<a class="dBlack" title="PHP + BAT PHP を自己解析するバッチ処理を作成する" href="https://m.php.cn/ja/faq/241704.html">PHP + BAT PHP を自己解析するバッチ処理を作成する</a></span><span>次の記事:<a class="dBlack" title="PHP + BAT PHP を自己解析するバッチ処理を作成する" href="https://m.php.cn/ja/faq/241708.html">PHP + BAT PHP を自己解析するバッチ処理を作成する</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>関連記事</h2><em><a href="https://m.php.cn/ja/article.html" class="bBlack"><i>続きを見る</i><b></b></a></em><div class="clear"></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-6t+ed+2i-1n-4w" data-ad-client="ca-pub-5902227090019525" data-ad-slot="8966999616"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><ul class="nphpXgwzList"><li><b></b><a href="https://m.php.cn/ja/faq/92233.html" title="Windows7系统下Netbeans+PHPUnit搭建PHP单元测试开发环境及PHPUn" class="aBlack">Windows7系统下Netbeans+PHPUnit搭建PHP单元测试开发环境及PHPUn</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/97151.html" title="程序猿ProMonkey V2.03" class="aBlack">程序猿ProMonkey V2.03</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/94770.html" title="PHP Navigator" class="aBlack">PHP Navigator</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/90182.html" title="php返回数组中指定的一列(php5.5.0默认函数array_column()在php" class="aBlack">php返回数组中指定的一列(php5.5.0默认函数array_column()在php</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/208396.html" title="htmlentitiesとhtmlspecialcharsの違いの詳しい説明" class="aBlack">htmlentitiesとhtmlspecialcharsの違いの詳しい説明</a><div class="clear"></div></li></ul></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="5027754603"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!</p></div><div class="footermid"><a href="https://m.php.cn/ja/about/us.html">私たちについて</a><a href="https://m.php.cn/ja/about/disclaimer.html">免責事項</a><a href="https://m.php.cn/ja/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body><!-- Matomo --><script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="https://tongji.php.cn/"; _paq.push(['setTrackerUrl', u+'matomo.php']); _paq.push(['setSiteId', '9']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); </script><!-- End Matomo Code --></html>