检查文件的 mime-type 是否与其在 php 中的扩展名匹配

发布于 2024-12-03 23:18:32 字数 59 浏览 0 评论 0 原文

有什么方法可以检查文件 mime 类型是否与其在 php 中的扩展名匹配?

谢谢, 亚当

Is there any way to check that a files mime-type matches it's extension in php ?

Thanks,
Adam

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空气里的味道 2024-12-10 23:18:32

请参阅此处: 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.

芯好空 2024-12-10 23:18:32

如果您有具有相应扩展名的已知 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文