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

php 模拟服务器 autoindex 效果。

程序员文章站 2024-04-06 17:29:25
...
可以丢到后台 方便代码阅读什么的
  1. //文件浏览程序
  2. error_reporting(0);
  3. $pwd = empty($_GET['dir']) ? './' : $_GET['dir'];
  4. $pwd = realpath($pwd);
  5. if(is_file($pwd)) {
  6. highlight_file ($pwd);
  7. exit;
  8. }else
  9. $it = new FilesystemIterator($pwd);
  10. ?>
  11. pwd of <?php echo $pwd ?>
  12. pwd of


  13. ../
  14. foreach ($it as $file){
  15. if($file->isDir()) {
  16. $fileSize = '_';
  17. $fileName = $file->getFilename() . '/';
  18. } elseif($file->isFile()) {
  19. $fileSize = $file->getSize();
  20. $fileName = $file->getFilename();
  21. }
  22. $date = date('Y-m-d H:i',$file->getCTime());
  23. ?>

复制代码
php 模拟服务器 autoindex 效果。php 模拟服务器 autoindex 效果。