当前位置:Gxlcms > PHP教程 > 列出windows下目录内容的php函数

列出windows下目录内容的php函数

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

  1. function list_files($dir)
  2. {
  3. if(is_dir($dir))
  4. {
  5. if($handle = opendir($dir))
  6. {
  7. while(($file = readdir($handle)) !== false)
  8. {
  9. if($file != "." && $file != ".." && $file != "Thumbs.db")
  10. {
  11. echo ''.$file.'
    '."\n";
  12. }
  13. }
  14. closedir($handle);
  15. }
  16. }
  17. }
  18. ?>

人气教程排行