欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php簡單瀏覽目錄內容的實現代碼

 更新時間:2013年06月07日 11:46:49   作者:  
本篇文章是對php簡單瀏覽目錄內容的實現代碼進行了詳細的分析介紹,需要的朋友參考下

如下所示:

復制代碼 代碼如下:

<?php
$dir = dirname(__FILE__);
$open_dir = opendir($dir);
echo "<table border=1 borderColor=red cellpadding=6>";
echo "<tr><th>文件名</th><th>大小</th><th>類型</th><th>修改日期</th></tr>";
while ($file = readdir($open_dir)) {
 if ($file!= "." && $file != "..") {
  echo "<tr><td>" . $file . "</td>";
  echo "<td>" . filesize($file) . "</td>";
  echo "<td>" . filetype($file) . "</td>";
  echo "<td>" . filemtime($file) . "</td></tr>";
 }

}
echo "</table>";
?>

相關文章

最新評論