我使用下面的代码进行文件上传,但在doc和excel文件的情况下它不起作用
switch(strtolower($ImageType))
{
case 'image/png':
case 'image/gif':
case 'application/pdf':
case 'image/jpeg':
case 'video/avi':
case 'video/mp4':
case 'image/pjpeg':
case 'application/msword':
case 'application/vnd.ms-excel':
break;
default:
die('Unsupported File!'); //output error and exit
}
这个代码工作我的图像情况但我们上传doc文件。它显示我不受支持的文件
答案 0 :(得分:1)
您可能缺少其他MIME类型。您的MIME类型对于较旧的.doc和.xls文件是正确的,但不适用于较新的。
对于.xlsx文件,请使用:
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
对于.docx文件,请使用:
application/vnd.openxmlformats-officedocument.wordprocessingml.document
这对你也有帮助: