我正在阅读php.net 链接上的文档,结果如下:
$_FILES['userfile']['type']
The mime type of the file, if the browser provided this information. An example would be "image/gif". This mime type is however NOT checked on the PHP side and therefore don't take its value for granted.
那么如何验证文件是否属于正确的 mime 类型,以防止用户将可能有害的文件上传到服务器?或以其他方式导致在服务器端执行的代码中出现错误(因为我可能会尝试在不是真正的 jpeg 图像的文件上使用 jpeg-only 函数)?
提前致谢