php

位置:IT落伍者 >> php >> 浏览文章

PHP遍历某个目录下的所有文件和子文件夹的实现代码


发布日期:2020年09月29日
 
PHP遍历某个目录下的所有文件和子文件夹的实现代码
本篇文章是对PHP遍历某个目录下的所有文件和子文件夹的实现代码进行了详细的分析介绍需要的朋友参考下复制代码 代码如下:


<?php
function read_all_dir ( $dir )
{
$result = array();
$handle = opendir($dir);
if ( $handle )
{
while ( ( $file = readdir ( $handle ) ) !== false )
{
if ( $file != && $file != )
{
$cur_path = $dir DIRECTORY_SEPARATOR $file;
if ( is_dir ( $cur_path ) )
{
$result[dir][$cur_path] = read_all_dir ( $cur_path );
}
else
{
$result[file][] = $cur_path;
}
}
}
closedir($handle);
}
return $result;
}
?>

               

上一篇:解析PHP实现下载文件的两种方法

下一篇:php中出现空白页面的原因及解决