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

 2025-01-16  阅读 455  评论 8  点赞 332

摘要:复制代码 代码如下:
复制代码 代码如下:

<?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 />';
}

标签:phpphp教程

评论列表:

  •   weihang233
     发布于 3天前回复该评论
  • 写的很不错,学到了!
  •   henbucuo
     发布于 2天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0286秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号