欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php显示当前文件所在的文件以及文件夹所有文件,树形展开

程序员文章站 2022-05-30 23:53:12
$path = "./"; function createDir($path = '.') { if ($han...
  1. $path = "./";
  2. function createDir($path = '.')
  3. {
  4. if ($handle = opendir($path))
  5. {
  6. echo "
      ";
    • while (false !== ($file = readdir($handle)))
    • {
    • if (is_dir($path.$file) && $file != '.' && $file !='..')
    • printSubDir($file, $path, $queue);
    • else if ($file != '.' && $file !='..')
    • $queue[] = $file;
    • }
    • printQueue($queue, $path);
    • echo "
  7. ";
  8. }
  9. }
  10. function printQueue($queue, $path)
  11. {
  12. foreach ($queue as $file)
  13. {
  14. printFile($file, $path);
  15. }
  16. }
  17. function printFile($file, $path)
  18. {
  19. echo "
  20. $file
  21. ";
  22. }
  23. function printSubDir($dir, $path)
  24. {
  25. echo "
  26. $dir";
  27. createDir($path.$dir."/");
  28. echo "
  29. ";
  30. }
  31. createDir($path);
  32. ?>

  33. 原文地址:https://www.freejs.net/article_jquerywenzi_112.html