現在所有文件都會被當做圖片來處理 我希望如果只顯示圖片 不是圖片就不處理 包括改過的拓展名的情況 這裡好像也沒法用getimagesize啊
<code>$dir = "upload/"; if (is_dir($dir)){ if ($dh = opendir($dir)){ while (($file = readdir($dh))!= false){ if(!is_dir($file)) { $filePath = $dir.$file; echo "<img src='".$filePath."'/>"; } } closedir($dh); } }</code>