程式CODE

2013年11月21日 星期四

php 列出資料夾內的檔案和目錄

if ($handle = opendir('.')) {  //開啟現在的資料夾
      while (false !== ($file = readdir($handle))) {
//避免搜尋到的資料夾名稱是false,像是0
          if ($file != "." && $file != "..") {
//去除掉..跟.
              echo "<a href='$file'>$file</a><br>";            
          }
      }
      closedir($handle);
  }



 
  foreach(glob('*',GLOB_ONLYDIR) as $directory)
{
echo 'Directory name: ' . $directory . '<br />';
}

沒有留言:

張貼留言