単純な if else ステートメントを使用して、特定のファイル タイプのアップロードを許可しています
$file_type = $_FILES["userfile"]["type"];
$allowed = array("image/jpeg", "image/gif", "application/pdf");
if(!in_array($file_type, $allowed)){ } else{ $err .= "not allowed"; return 0; }
しかし、うまくいきません。
特定の種類のファイルのみを許可する別の方法はありますか?