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

前端之家收集整理的这篇文章主要介绍了PHP遍历某个目录下的所有文件和子文件夹的实现代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="73000" class="copybut" id="copybut73000" onclick="doCopy('code73000')"> 代码如下:

<div class="codebody" id="code73000">
<?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;
}
?>

原文链接:https://www.f2er.com/php/25965.html

猜你在找的PHP相关文章