我正在使用简单的 if else 语句来允许上传特定的文件类型
$file_type = $_FILES["userfile"]["type"];
$allowed = array("image/jpeg", "image/gif", "application/pdf");
if(!in_array($file_type, $allowed)){ } else{ $err .= "not allowed"; return 0; }
但它不起作用。
有没有其他方法只允许特定类型的文件?