检查文件的 mime-type 是否与其在 php 中的扩展名匹配
有什么方法可以检查文件 mime 类型是否与其在 php 中的扩展名匹配?
谢谢, 亚当
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有什么方法可以检查文件 mime 类型是否与其在 php 中的扩展名匹配?
谢谢, 亚当
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
请参阅此处: http://www.php.net/manual/en/ function.finfo-file.php。此函数允许您检测文件的 mime 类型。
See here: http://www.php.net/manual/en/function.finfo-file.php. This function allows you to detect the file's mime-type.
如果您有具有相应扩展名的已知 mime 类型列表,请使用
mime_content_type
函数并在数组中查找扩展名很简单。然而,也存在一些问题;一个全面的列表会很大,并且可能很快就会过时,并且嗅探 mime 类型通常被认为是一个困难的问题 不准确的解决方案。If you have a list of known mime types with corresponding extensions, using the
mime_content_type
function and looking up the extension in an array is simple. There are problems, however; a comprehensive list would be large and likely become outdated fairly quickly, and sniffing mime types is generally considered a difficult problem with inaccurate solutions.