威望0
积分7946
贡献0
在线时间763 小时
UID1
注册时间2021-4-14
最后登录2024-11-21
管理员
- UID
- 1
- 威望
- 0
- 积分
- 7946
- 贡献
- 0
- 注册时间
- 2021-4-14
- 最后登录
- 2024-11-21
- 在线时间
- 763 小时
|
[mw_shl_code=applescript,true]<?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;
}[/mw_shl_code] |
上一篇:页面编程小技巧 —— 大屏图片自适应下一篇:php伪静态设置
|