在使用 php 和 jquery 上传文件时,如何上传txt、doc/docx、ppt/pptx、pdf并限制所有其他文件类型?我也可以用 jQuery 来做吗?
我试过这个。
$allowedExts = array("doc", "docx", "pdf", "txt");
$extension = end(explode(".", $_FILES["file"]["name"]));
if (($_FILES["file"]["type"] == "application/msword")
|| ($_FILES["file"]["type"] == "application/pdf")
|| ($_FILES["file"]["type"] == "application/txt")
&& in_array($extension, $allowedExts)){}
我在 JQuery 中需要它或在 PHP 中使用更好的方法。