一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

php文件名与文件内容查找器实例

时间:2013-12-13 编辑:简简单单 来源:一聚教程网

php文件查找程序,输入一个路径确定后会遍历目录下所有的文件和文件夹,通过递归可以找到文件夹下面的每一个文件,再通过文件名和输入的关键字匹配,则可以查找到你想要的文件。对于本地,我们可以利用windows自带的查找去进行查找,但是对于线上的话,如查找ftp空间里面文件,本程序是很有用的。

php文件查找器


php文件查找器源码:

 代码如下 复制代码

 

  

  php版文件查找(file search)

 

 

  

  

文件查找(注:区分大小写)

  

路径:

  

查找:

  

  

 

/*

 * 注:区分大小写

 */

if(!empty($_POST['path'])&&!empty($_POST['key'])){

 echo "在路径 ".$_POST['path']."/ 中查找 ".$_POST['key']." 的结果为:


";

 $file_num = $dir_num = 0;

 $r_file_num = $r_dir_num= 0;

 $findFile = $_POST['key'];

 function delDirAndFile( $dirName ){ 

  if ( $handle = @opendir( "$dirName" ) ) {

   while ( false !== ( $item = readdir( $handle ) ) ) { 

    if ( $item != "." && $item != ".." ) { 

     if ( is_dir( "$dirName/$item" ) ) { 

      delDirAndFile( "$dirName/$item" );

     } else { 

      $GLOBALS['file_num']++;

      if(strstr($item,$GLOBALS['findFile'])){

       echo " $dirName/$item
n";

       $GLOBALS['r_file_num']++;

      }

     } 

    }

   }

   closedir( $handle ); 

   $GLOBALS['dir_num']++;

   if(strstr($dirName,$GLOBALS['findFile'])){

    $loop = explode($GLOBALS['findFile'],$dirName);

    $countArr = count($loop)-1;

    if(empty($loop[$countArr])){

     echo " $dirName
n";

     $GLOBALS['r_dir_num']++;

    }

   }

  }else{

   die("没有此路径!");

  }

 }

 


 delDirAndFile($_POST['path']);

 echo "


本次共搜索到".$file_num."个文件,文件夹".$dir_num."个
";

 echo "


符合结果的共".$r_file_num."个文件,文件夹".$r_dir_num."个
";

}

 


?>

上面只是查找文件,下面看一个查找文件中的字符是否包括我们要找的东西

自己写的一个批量查找文件内容的php程序,我是拿来扫描文件特征码的,现在我 贴出代码,供大家参考

 代码如下 复制代码


if ($_POST ['Submit'] == '开始') {

 $total = 0; //文件总数

 $dangerous = array (); //危险文件

 $dangerous_content = $_POST ["sstr"];

 $find_path = $_POST ["searchpath"];

 $shortname = $_POST ["shortname"];

 echo "";

 echo "";

 echo "";

 echo "";

 echo "";

 echo "";

 $begin_time=date("U");

 // $dangerous_content = "小亮,Root_GP,Root_CSS,c99sh_updateurl,c99sh_sourcesurl,640684770";

 visitFile ( $find_path, $shortname );

 $end_time=date("U");

 foreach ($dangerous as $d){

  echo $d."
";

 }

 echo "查找文件总数:" . $total." 危险文件:".count($dangerous)." 总用时".($end_time-$begin_time)."秒";

 echo "";

 echo "";

 //if (! empty ( $dangerous )) {

  //foreach ( $dangerous as $dan ) {

 //echo "[error]" . $dan . "
";

 //}

 //}

 exit();

}

function visitFile($path, $ext) {

 global $total;

 global $dangerous_content;

 $fdir = dir ( $path );

 //echo "Handle: " . $d->handle . "
";

 // echo "Path: " . $fdir->path . "
";

 set_time_limit ( 24 * 60 * 60 );

 

 while ( ($entry = $fdir->read ()) !== false ) {

  $pathSub = $path . "\" . $entry;

  if ($entry != '.' && $entry != '..') {

   if (is_dir ( $pathSub )) {

    visitFile ( $pathSub, $ext );

   } else {

    $exten = explode ( '.', $entry );

    $exten = array_reverse ( $exten ); //把上面数组倒序

    //   foreach ()

    $shortnames = explode ( '|', $ext );

    foreach ( $shortnames as $sn ) {

     if (! empty ( $exten ) && $sn == $exten [0]) {

      $total = $total + 1;

      //echo "开始分析文件:".$path."/".$entry . "
";

      $content = file_get_contents ( $path . "/" . $entry ); //这个性能较好

      $content = strtolower ( $content ); //全部转为小写

      $dangerous_content = strtolower ( $dangerous_content ); //全部转为小写

      isExists ( $dangerous_content, $path . "/" . $entry, $content );//这个方法太耗内存了,希望有高手能解决一下

     }

    }

    //sleep(1);

   }

  }

 }

 $fdir->close ();

}

function isExists($str, $filename, $content) {

 global $dangerous;

 //sleep ( 1 );

 set_time_limit ( 10 );

 $arr = explode ( ',', $str );

 $signature="特征码:";

 if (! empty ( $arr )) {

  //  $content = file_get_contents ( $filename ); //这个性能较好

  $content = strtolower ( $content ); //全部转为小写

  $error_count = 0;

  foreach ( $arr as $a ) {

   if (trim ( $a ) != "") {

    if (strpos ( $content, $a )) {

     $error_count = $error_count + 1;

     $signature.=$a." ";

    }

   }

  }

  if ($error_count > 0) {

//   $dangerous [] = $filename;

   $dangerous [] = "[error] " . $error_count . " " .$signature." " . $filename;

   //echo "[error] " . $error_count . " " .$signature." " . $filename . "
";

  }else{

   //echo "[ok] "  . $filename . "
";

  }

 }

}

?>

批量查询文件

批量查找程序

本程序可以扫描指定目录的所有文件,进行内容查找

在文件数量非常多的情况下,本操作比较占用服务器资源,请确脚本超时限制时间允许更改,否则可能无法完成操作。

 

 

 target="stafrm" method="post">

 cellspacing="1" bgcolor="#666666">

 

  

  

 

 

  

  

 

 

  

 

 

  

 

 起始根路径:

   id="searchpath" value="D:/" size="20" /> 点表示当前目录,末尾不要加/

 文件扩展名:

   id="shortname" size="20" value="htm|html|shtml|php" /> 多个请用|隔开

  

   

    

   

   

    

   

   

    

    

   

  

内容查找选项: checkbox"

     name="isreg" value="1" />使用正则表达式

查找内容类默认使用字符串查找,也可以使用正则表达式(需勾选)。"查找为"不填写的话,就表示删除"查找内容"。

     
com,system,exec,eval,escapeshell,cmd,passthru,base64_decode,gzuncompress

    

 查找内容: <textarea name="sstr" id="sstr"

     style="width: 90%; height: 45px">小亮,Root_GP,Root_CSS,c99sh_updateurl,c99sh_sourcesurl,640684770,hx_dealdir,while(1)

  

   type="submit" name="Submit" value="开始" class="inputbut" />

 cellspacing="1" bgcolor="#666666">

 

  

 

  

<iframe name="stafrm"

   frameborder="0" id="stafrm" width="100%" height="100%">

  

热门栏目