我正在做一些PHP編碼。而在這我得到錯誤的意外{
對於這部分代碼:針對{
在if (eregi('\.(jpg|gif|png)$', $file){
線具體給出Unexpexted {PHP中的錯誤,即使所有的括號被檢查
function image_filenames($dir){
$handle = @opendir($dir) or die("I cannot open the directory '<b>$dir</b>' for reading.");
$images = array();
while (false !== ($file = readdir($handle))){
if (eregi('\.(jpg|gif|png)$', $file){
$images[] = $file;
}
}
closedir($handle);
return $images;
}
錯誤。
如果我評論這個函數,頁面加載非常好。
我缺少什麼?
使用一些IDE喜歡的NetBeans或PHP風暴,你不會有這樣的問題 –