微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 如何检查文件是否是图像?

我可以检查某个文件是否是图像?在 PHP中怎么做?

如果文件不是图像,我想给出一个警报消息.

除了 getimagesize(),您可以使用 exif_imagetype()

exif_imagetype() reads the first bytes of an image and checks its signature.

When a correct signature is found,the appropriate constant value will be returned otherwise the return value is FALSE. The return value is the same value that getimagesize() returns in index 2 but exif_imagetype() is much faster.

对于这两个函数,如果文件未被确定为图像,则返回FALSE.

原文地址:https://www.jb51.cc/php/131901.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐