当前位置:Gxlcms > PHP教程 > PHP文件遍历小例子

PHP文件遍历小例子

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

PHP文件遍历小例子

完整代码:

  1. $dir = "D:\workspace";
  2. function list_file($dir = '.'){
  3. $list = scandir($dir);
  4. echo '
      ';
    1. foreach($list as $file){
    2. $target = "$dir/$file";
    3. if ( is_dir($target) && $file != '.' && $file != '..' ){
    4. echo "
    5. $file
    6. ";
    7. list_file($target);
    8. } else if ( $file != '.' && $file != '..'){
    9. echo "
    10. $file
    11. ";
    12. }
    13. }
    14. echo '
    ';
  5. }
  6. list_file($dir);

人气教程排行