-
-
/**
- * 取出指定目录的所有子目录
- * edit: bbs.it-home.org
- * 2013/10/9
- */
- function listdir($dir){
- if ($handle = opendir($dir)){
- $output = array();
- while (false !== ($item = readdir($handle))){
- if (is_dir($dir.'/'.$item) and $item != "." and $item != ".."){
- $output[] = $dir.'/'.$item;
- $output = array_merge($output, ListDescendantDirectories($dir.'/'.$item));
- }
- }
- closedir($handle);
- return $output;
- }else{
- return false;
- }
- }
//调用,取目录中的所有子目录,循环遍历。
- $dirs = listdir('myDirectory');
- foreach($dirs as $dir){
- echo $dir.'
';
- }
- ?>
-
复制代码
|