您好,欢迎访问一九零五行业门户网

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生成验证码,缩略图及水印图的类实例详解
关于php使用token防止表单重复提交的方法
以上就是php文件查找器源码分享的详细内容。
其它类似信息

推荐信息