首頁 >後端開發 >php教程 >php遍歷目錄下所有檔案和子資料夾的程式碼

php遍歷目錄下所有檔案和子資料夾的程式碼

WBOY
WBOY原創
2016-07-25 08:58:10886瀏覽
介绍一个可以遍历目录下所有文件与子文件夹的代码,供初学的朋友参考。

例子:

<?php
/**
* 遍历目录下所有文件及子文件夹
* edit bbs.it-home.org
*/
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;
}
?>

代码不复杂,有兴趣的朋友,自己找几个目录测试下。



陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn