博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP 遍历文件夹下的文件以及子文件夹
阅读量:5038 次
发布时间:2019-06-12

本文共 1205 字,大约阅读时间需要 4 分钟。

// 递归的方式实现

function my_dir( $dir )
{
  if ( !is_dir($dir) )
  {
    return 'not dir';die();
  }
  $files = array();
  $dir_list = scandir($dir);
  foreach( $dir_list as $file )
  {
    if( $file!='.' && $file!='..' )
    {
      if( is_dir( $dir.'/'.$file ))
      {
        $files[$file] = my_dir( $dir.'/'.$file );
      }
      else
      {
        $files[] = $file;
      }
    }
  }
  return $files;
};

 

// 队列方式实现

function my_dir_list( $dir )

{
  if( !is_dir( $dir) )
  {
    return 'not dir';die();
  }
  $files = array();
  $queue = array( $dir );
  // $data = each( $queue );
  while( $data = each( $queue) )
  {
    $path = $data['value'];
    $handle = opendir( $path );
    if( is_dir($path) && $handle )
    {
      // $file = readdir( $handle );
      while( $file = readdir( $handle) )
      {
        if ( $file == '.' || $file == '..' )
        {
          continue;
        }
        else
        {
          $real_path = $path.'/'.$file;
          $files[] = $real_path;
          if( is_dir($real_path) )
          {
            $queue[] = $real_path;
          }
        }
      }
    }
    closedir($handle);
  }
  return $files;
}

 

转载于:https://www.cnblogs.com/laowenBlog/p/6531487.html

你可能感兴趣的文章
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
UIActionSheet 修改字体颜色
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
Spring注解之@Lazy注解,源码分析和总结
查看>>
spoj 345
查看>>
ios 设置屏幕方向的两种方法
查看>>
Java编程思想小笔记2
查看>>
正则表达式 之 常用实例
查看>>
【Pandas最好用的函数】
查看>>
Dynamics365解决方案的新特性
查看>>
预生成事件/生成后事件命令行对话框
查看>>
多变量微积分笔记24——空间线积分
查看>>
Magento CE使用Redis的配置过程
查看>>
poi操作oracle数据库导出excel文件
查看>>
(转)Intent的基本使用方法总结
查看>>
Mac 下的Chrome 按什么快捷键调出页面调试工具
查看>>
Windows Phone开发(24):启动器与选择器之发送短信
查看>>
JS截取字符串常用方法
查看>>