我在php中使用表单上传文件。我按文件功能设置文件类型的条件。但我无法上传.doc和.docx文件??虽然发生错误,但我为每个添加了适当的MIME类型。 我该怎么办?
if($_FILES["return_files"]["name"]!= "")
{
if ((($_FILES["return_files"]["type"] == "text/plain") || ($_FILES["return_files"]["type"] == "application/pdf") || ($_FILES["return_files"]["type"] == "application/msword") || ($_FILES["return_files"]["type"] == "application/vnd.openxmlformats-officedocument.wordprocessingml.document") && ($_FILES["return_files"]["size"] < 409600))
{
..............
..............
}
}
.txt文件和pdf文件正在上传,但doc和docx文件无法上传。