当前位置:首页 > PHP教程 > php文件操作 > 列表

PHP实现的文件浏览器功能简单示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-17 11:43:08 浏览: 评论:0 

这篇文章主要介绍了PHP实现的文件浏览器功能,结合完整实例形式分析了php针对目录与文件的遍历、判断、属性读取等相关操作技巧,需要的朋友可以参考下。

本文实例讲述了PHP实现的文件浏览器功能,分享给大家供大家参考,具体如下:

  1. <?php 
  2. if(isset($_GET['path'])){ 
  3.   echo $path = $_SERVER['DOCUMENT_ROOT'].$_GET['path']; 
  4.   $pre_path = $_GET['path']; 
  5. }else
  6.   echo $path = $_SERVER['DOCUMENT_ROOT']; 
  7.   $pre_path = ""
  8. ?> 
  9. <html> 
  10.   <head> 
  11.     <title></title> 
  12.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
  13.   </head> 
  14.   <body> 
  15.     <table border="1"
  16.       <thead> 
  17.         <tr> 
  18.           <td>文件名</td> 
  19.           <td>文件大小</td> 
  20.           <td>文件类型</td> 
  21.           <td>修改时间</td> 
  22.         </tr> 
  23.       <thead> 
  24.       <tbody> 
  25.         <?php 
  26.         $url_this = "http://".$_SERVER ['HTTP_HOST'].$_SERVER['PHP_SELF']; 
  27.         $handle = opendir($path); 
  28.         while($file=readdir($handle)){ 
  29.           echo "<tr>"
  30.           echo "<td>".$file."</td>"
  31.           echo "<td>".filesize($path."/".$file)."</td>"
  32.           if(filetype($path."/".$file)=="dir"){ 
  33.             $next = $pre_path."/".$file
  34.             echo "<td><a href=\"$url_this?path=$next\">dir</a></td>"
  35.           }else
  36.             echo "<td>".filetype($path."/".$file)."</td>"
  37.           } 
  38.           echo "<td>".date("Y年n月t日",filemtime($path."/".$file))."</td>"
  39.           echo "</tr>"
  40.         } 
  41.         closedir($handle); 
  42.         ?> 
  43.       </tbody> 
  44.     </table> 
  45.   </body> 
  46. </body>

Tags: PHP文件浏览器

分享到: