2

只是想知道如何递归搜索网站文件夹目录(与脚本上传到的目录相同)并打开/读取每个文件并搜索特定字符串?

例如我可能有这个:

search.php?string=hello%20world

这将运行一个进程,然后输出类似

"hello world found inside"

httpdocs
/index.php
/contact.php

httpdocs/private/
../prviate.php
../morestuff.php
../tastey.php

httpdocs/private/love
../../goodness.php

我不希望它链接 - 因为私有文件和未链接文件是圆形的,但我希望其他所有非二进制文件都可以真正访问。

非常感谢

欧文

4

3 回答 3

3

我想到了两个直接的解决方案。

1)grepexec命令一起使用(仅当服务器支持时):

$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

于 2012-07-16T16:59:30.723 回答
1

如果目录列表已打开,您可以尝试

<?php
$dir = "http://www.blah.com/";
foreach(scandir($dir) as $file){
  print '<a href="'.$dir.$file.'">'.$file.'</a><br>';
}
?>

或者

<?php
$dir = "http://www.blah.com/";
$dh  = opendir($dir);
while (false !== ($file = readdir($dh))) {
  print '<a href="'.$dir.$file.'">'.$file.'</a><br>';
}
?>
于 2012-07-16T16:51:22.400 回答
0

如果您不能使用任何提到的方法,您可以使用带有回调的递归目录遍历。并将您的回调定义为检查给定文件中给定字符串的函数。

于 2012-07-16T16:50:41.310 回答