0
我使用下面的代碼上傳文件,但它並不在文檔的情況下工作,excel文件圖像的文件上傳不工作的文檔,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文件。它顯示我不支持的文件
你如何確定'$ ImageType'?你可以發佈該代碼嗎? –