使用 PHP 获取特定目录中的所有子目录
以下代码行可用于获取目录中的子目录:
示例
<?php $all_sub_dirs = array_filter(glob('*.*'), 'is_dir'); print_r($all_sub_dirs); ?>
输出
将生成以下输出。glob 函数用于获取特定目录的所有子目录:
Array ( [0] => demo.csv [1] => mark.php [2] => contact.txt [3] => source.txt )
以下代码可用于仅获取目录:
示例
<?php $all_dirs = glob($somePath . '/*' , GLOB_ONLYDIR); print_r($all_dirs); ?>
输出
将生成以下输出。glob 函数通过指定仅需要提取目录来使用:
Array ( [0] => example [1] => exam [2] => log )
广告