我有此功能檢查,如果該文件是一個圖像或不是,但它始終返回false無法檢查該文件的類型被上傳
function upload_file($file) {
if($file['type'] != "image/jpeg" || $file['type'] != "image/gif") {
$errors[] = "Please upload a photograph with extenstion of JPEG, JPG, GIF or BMP.";
return false;
}
}
所以誰能告訴我在哪裏出了錯這裏!
在此先感謝。
非常感謝你真的保存了一天 – 2012-04-21 00:09:57