在 PHP 的上载表单中检查文件扩展名
2022-08-30 09:16:55
我检查文件扩展名是否上传。我的示例方法有效,但现在我需要了解我的方法(使用)是否为真。有没有另一种更好,更快的方法?pathinfo
$filename = $_FILES['video_file']['name'];
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if ($ext !== 'gif' || $ext !== 'png' || $ext !== 'jpg') {
echo 'error';
}