我想到了两个直接的解决方案。
1)grep
与exec
命令一起使用(仅当服务器支持时):
$query = $_GET['string'];
$found = array();
exec("grep -Ril '" . escapeshellarg($query) . "' " . $_SERVER['DOCUMENT_ROOT'], $found);
完成后,包含查询的每个文件路径都将放在$found
. 您可以遍历此数组并根据需要处理/显示它。
2)递归遍历文件夹并打开每个文件,搜索字符串,如果找到则保存:
function search($file, $query, &$found) {
if (is_file($file)) {
$contents = file_get_contents($file);
if (strpos($contents, $query) !== false) {
// file contains the query string
$found[] = $file;
}
} else {
// file is a directory
$base_dir = $file;
$dh = opendir($base_dir);
while (($file = readdir($dh))) {
if (($file != '.') && ($file != '..')) {
// call search() on the found file/directory
search($base_dir . '/' . $file, $query, $found);
}
}
closedir($dh);
}
}
$query = $_GET['string'];
$found = array();
search($_SERVER['DOCUMENT_ROOT'], $query, $found);
这应该(未经测试)递归搜索每个子文件夹/文件以查找请求的字符串。如果找到,它将在变量中$found
。