程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php實現按文件名搜索文件的遠程文件查找器

php實現按文件名搜索文件的遠程文件查找器

編輯:關於PHP編程

對於本地,我們可以利用windows自帶的查找去進行查找,但是對於線上的話,如查找ftp空間裡面文件,本程序是很有用的。

使用效果:

php文件查找器源碼:
復制代碼 代碼如下:
<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>php版文件查找(file search)</title>
 </head>
 <body>
  <form action="" method="post">
  <p> 文件查找(注:區分大小寫)</p>
  <p>路徑:<input type="text" name="path" /></p>
  <p>查找:<input type="text" name="key" /></p>
  <p><input type="submit" name="sub" value=" 開 始 " /></p>
  </form>
 </body>
</html>
<?php
/*
 * 注:區分大小寫
 * by: http://www.jb51.net
 */
if(!empty($_POST['path'])&&!empty($_POST['key'])){
 echo "在路徑 ".$_POST['path']."/ 中查找 ".$_POST['key']." 的結果為:<hr/>";
 $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 " <span><b> $dirName/$item </b></span><br />\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 " <span style='color:#297C79;'><b> $dirName </b></span><br />\n";
     $GLOBALS['r_dir_num']++;
    }
   }
  }else{
   die("沒有此路徑!");
  }
 }

 delDirAndFile($_POST['path']);
 echo "<hr/>本次共搜索到".$file_num."個文件,文件夾".$dir_num."個<br/>";
 echo "<hr/>符合結果的共".$r_file_num."個文件,文件夾".$r_dir_num."個<br/>";
}

?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved