使用preg_match在目录中查找文件?

时间:2012-12-07 19:17:42

标签: php directory while-loop preg-match opendir

我需要在符合特定条件的目录中找到一个文件。例如,我知道文件名以'123-'开头,以.txt结尾,但我不知道两者之间是什么。

我已经启动了代码来获取目录和preg_match中的文件,但是卡住了。如何更新以找到我需要的文件?

$id = 123;

// create a handler for the directory
$handler = opendir(DOCUMENTS_DIRECTORY);

// open directory and walk through the filenames
while ($file = readdir($handler)) {

  // if file isn't this directory or its parent, add it to the results
  if ($file !== "." && $file !== "..") {
    preg_match("/^".preg_quote($id, '/')."\\-(.+)\\.txt$/" , $file, $name);

    // $name = the file I want
  }

}

// tidy up: close the handler
closedir($handler);

2 个答案:

答案 0 :(得分:3)

我在这里为你写了一个小剧本,Cofey。试试这个尺寸。

我为自己的测试更改了目录,因此请务必将其设置回常量。

目录内容:

  • 123-banana.txt
  • 123-额外bananas.tpl.php
  • 123-wow_this_is_cool.txt
  • 无bananas.yml

<强>代码:

<pre>
<?php
$id = 123;
$handler = opendir(__DIR__ . '\test');
while ($file = readdir($handler))
{
    if ($file !== "." && $file !== "..")
    {
      preg_match("/^({$id}-.*.txt)/i" , $file, $name);
      echo isset($name[0]) ? $name[0] . "\n\n" : '';
    }
}
closedir($handler);
?>
</pre>

<强>结果:

123-banana.txt

123-wow_this_is_cool.txt

preg_match将结果保存为$name作为数组,因此我们需要通过它的键0来访问。我首先检查以确保匹配{{1} }。

答案 1 :(得分:1)

您必须测试比赛是否成功。

循环中的代码应为:

if ($file !== "." && $file !== "..") {
    if (preg_match("/^".preg_quote($id, '/')."\\-(.+)\\.txt$/" , $file, $name)) {
        // $name[0] is the file name you want.
        echo $name[0];
    }
}