如何扫描目录和所有子目录中的特定文件(扩展名为.php)

时间:2019-05-15 09:35:43

标签: php parsing directory

我有一个像这样的文件夹结构:

Examplefolder
|---Folder1
|       |--- file1.php
|---Folder2
|       |---Subfolder
|              |--- subfile1.php
|              |--- subfile2.html
|---Folder3
|---file2.php

如您所见,示例文件夹是主文件夹。它可以包含普通的php oder oder文件扩展名。在主文件夹内还有子文件夹(如folder1和folder2)。在子文件夹内可以有更多文件夹。

现在,我想扫描examplefolder中扩展名为.php的文件,该文件应保存到数组中。这将如何运作?我还尝试了一种显示所有文件的方法,但是我只想要带有php扩展名的文件。

我的示例如下:

if (file_exists($path) && is_dir($path))
        {
            $result = scandir($path);

            $files = array_diff($result, array('.', '..'));

            if (count($files) > 0)
            {


                foreach ($files as $file)
                {
                    if (is_file("$path/$file"))
                    {
                        $array[] = $file;
                    }
                    else if (is_dir("$path/$file"))
                    {
                        $array[] = $this->getComponentPathNames("$path/$file");
                    }
                }
            }
        }

1 个答案:

答案 0 :(得分:0)

这可以通过使用substr()函数的简单if语句来获取文件名的后4个字符来实现。像这样:

$file = "test-file.php";

if ((substr($file, -4)) == ".php") {
    echo "This";
} else {
    echo "this one";
}

因此,如果后四个字符等于.php,请继续执行其他操作。