<?php
$fileList = array();
$dir = $_SERVER['DOCUMENT_ROOT']."/用户异常申请报告单文件夹2";//服务器根目录下某个文件夹
$ext =".php";//包含某个特定字符串的文件,这里使用文件后缀
$word="123";//读取文件中内容,匹配相应字符串
findWord($dir,$ext,$word);
/*
功能:遍历文件夹及其子文件夹的指定类型文件,读取文件内容并找到含某关键字文件
输入:$dir 目录 , $ext 文件后缀, $word 关键字
输出:文件List
*/
function findWord($dir,$ext,$word){
$rList = array();
$list = read_all_dir ( $dir,$ext );
foreach($list as $file){
$c = file_get_contents($file);
if(strpos($c,$word)!==false){
$rList[]=$file;
}
}
print_r($rList);
}
/*
遍历某个目录下的所有文件和子文件夹,返回某个后缀的文件列表;
*/
function read_all_dir ($dir){
global $fileList,$ext;
$result = array();
$handle = opendir($dir);
if ($handle){
while ( ( $file = readdir ( $handle ) ) !== false ){
if($file != '.' && $file != '..'){
$cur_path = $dir . DIRECTORY_SEPARATOR . $file;
if ( is_dir ( $cur_path ) ){
$result['dir'][$cur_path] = read_all_dir ( $cur_path );
}else{
$result['file'][] = $cur_path;
if(strpos($cur_path,$ext)!==false){
$fileList[]= $cur_path;
}
}
}
}
closedir($handle);
}
return $fileList;
}
|