2011年7月5日 星期二

PHP讀取資料夾內檔案列表

PHP的內建函式,以物件的方式處理,可以用來顯示資料夾內的檔案


$d = dir($Path); 
while( $entry = $d->read() ){
  if ($entry!= “.” && $entry!= “..”) {
  
 }
}
closedir($d);

2 則留言:

Zeuxis Lo 提到...

foreach(glob($Path."/*") as $entry) {
if (in_array($entry, array(".", "..")) === false) {

}
}

omusico 提到...

about glob http://jishus.org/?p=690