文件上传不适用于doc,excel文件

时间:2014-04-21 11:50:35

标签: php ajax

我使用下面的代码进行文件上传,但在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文件。它显示我不受支持的文件

1 个答案:

答案 0 :(得分:1)

您可能缺少其他MIME类型。您的MIME类型对于较旧的.doc和.xls文件是正确的,但不适用于较新的。

对于.xlsx文件,请使用:

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

对于.docx文件,请使用:

application/vnd.openxmlformats-officedocument.wordprocessingml.document

这对你也有帮助: