熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP遍歷某個目錄下的所有文件和子文件夾的實現代碼

2022-06-13   來源: 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;
}
?>


From:http://tw.wingwit.com/Article/program/PHP/201311/21006.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.