Loading

php 遍历文件夹中的文件夹和文件

遍历文件夹中的文件:

1 $handle = opendir($folder_path);
2 while (false !== ($filename = readdir($handle))){
3      $files[] = $filename;       
4 }
5 closedir($handle);
6 var_dump($files);

 

posted @ 2022-02-10 08:59  头牌彭鱼宴、  阅读(111)  评论(0编辑  收藏  举报