Home  >  Article  >  Backend Development  >  Method 4 to traverse all files and folders under a folder

Method 4 to traverse all files and folders under a folder

WBOY
WBOYOriginal
2016-07-25 09:11:37823browse
Traverse all files and folders under a folder
  1. function list_dir($dirpath){
  2. if($dirpath[strlen($dirpath)-1]!="\"){$dirpath.="\";}
  3. static $result_array=array();
  4. if(is_dir($dirpath)){
  5. $handle=opendir($dirpath);
  6. while($file=readdir($handle)){
  7. if($file=="."||$file==" .."){continue;}
  8. if(is_dir($dirpath.$file)){
  9. list_dir($dirpath.$file."\");
  10. }else{
  11. array_push($result_array,$dirpath.$file );
  12. }
  13. }
  14. closedir($handle);
  15. }
  16. return $result_array;
  17. }
  18. $array=list_dir("D:www");
  19. foreach($array as $value){
  20. echo $value ;
  21. echo "
    ";
  22. }
Copy code


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn