检查目录是否有子目录PHP

时间:2015-08-19 14:08:19

标签: php

我正在尝试在目录中获取文件。此操作必须非常快。初始目录可以包含path/child/sub_child/sub_sub_child/aFile之类的子项。但是文件也可以出现在

之前
  • 路径

    • 文件

    我不关心我得到哪个文件我只想快速获取它。

我坚持这个

        $h = opendir($path); //Open the current directory
        while (false !== ($entry = readdir($h))) 
        {
            if($entry != '.' && $entry != '..') 
            { 
                echo $entry; 
                break; 
            }
        }

0 个答案:

没有答案