欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

遍历指定目录下的所有目录和文件的php代码

程序员文章站 2023-11-03 20:38:52
复制代码 代码如下:
复制代码 代码如下:

<?php
function listfiles($path){
$result = array();
foreach(glob($path.'\\'."*") as $item){
$result[strtolower($item)] = $item;
if(is_dir($item)){
$result += listfiles($item);
}
}
return $result;
}
$path = 'e:\\web\\dianle';
foreach(listfiles($path) as $item){
echo $item.'<br />';
}

2: scandir 读取指定目录到数组
复制代码 代码如下:

function listfiles($path){
$result = array();
foreach( scandir($path) as $item ){
if($item != '.' && $item != '..' ){
$item = $path.'\\'.$item;
$result[strtolower($item)] = $item;
if(is_dir($item)){
$result += listfiles($item);
}
}
}
return $result;
}
$path = 'e:\\web\\dianle';
foreach(listfiles($path) as $item){
echo $item.'<br />';
}