当前位置:Gxlcms > PHP教程 > php遍历目录与其下所有文件

php遍历目录与其下所有文件

时间:2021-07-01 10:21:17 帮助过:3人阅读

  1. function my_scandir($dir){
  2. $files=array();
  3. if(is_dir($dir)){
  4. if($handle=opendir($dir)){
  5. while(($file=readdir($handle))!==false){
  6. if($file!='.' && $file!=".."){
  7. if(is_dir($dir."/".$file)){
  8. $files[$file]=my_scandir($dir."/".$file);
  9. }else{
  10. $files[]=$dir."/".$file;
  11. }
  12. } // bbs.it-home.org
  13. }
  14. }
  15. }
  16. closedir($handle);
  17. return $files;
  18. }

人气教程排行