如何在PHP中检查上传的文件类型
2022-08-30 11:48:56
我用这个代码来检查图像的类型,
$f_type=$_FILES['fupload']['type'];
if ($f_type== "image/gif" OR $f_type== "image/png" OR $f_type== "image/jpeg" OR $f_type== "image/JPEG" OR $f_type== "image/PNG" OR $f_type== "image/GIF")
{
$error=False;
}
else
{
$error=True;
}
但是有些用户抱怨他们在上传任何类型的图像时遇到错误,而其他一些用户则没有任何错误!
我想知道这是否解决了问题:
if (mime_content_type($_FILES['fupload']['type']) == "image/gif"){...
任何意见?