您好,登錄后才能下訂單哦!
這篇文章主要講解了“php實現搜索文件程序”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“php實現搜索文件程序”吧!
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.daixiaorui.com */ 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/>"; } ?>
感謝各位的閱讀,以上就是“php實現搜索文件程序”的內容了,經過本文的學習后,相信大家對php實現搜索文件程序這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。