栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

.rar,.zip文件MIME类型

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

.rar,.zip文件MIME类型

来自freedompeace,Kiyarash和Sam Vloeberghs的答案:

.rar    application/x-rar-compressed, application/octet-stream.zip    application/zip, application/octet-stream, application/x-zip-compressed, multipart/x-zip

我也会检查文件名。这是检查文件是RAR还是ZIP文件的方法。我通过创建一个快速的命令行应用程序对其进行了测试。

<?phpif (isRarOrZip($argv[1])) {    echo 'It is probably a RAR or ZIP file.';} else {    echo 'It is probably not a RAR or ZIP file.';}function isRarOrZip($file) {    // get the first 7 bytes    $bytes = file_get_contents($file, FALSE, NULL, 0, 7);    $ext = strtolower(substr($file, - 4));    // RAR magic number: Rar!x1Ax07x00    // http://en.wikipedia.org/wiki/RAR    if ($ext == '.rar' and bin2hex($bytes) == '526172211a0700') {        return TRUE;    }    // ZIP magic number: none, though PK0304, PK0506 (empty archive),     // or PK0708 (spanned archive) are common.    // http://en.wikipedia.org/wiki/ZIP_(file_format)    if ($ext == '.zip' and substr($bytes, 0, 2) == 'PK') {        return TRUE;    }    return FALSE;}

请注意,它仍然不能100%确定,但是可能已经足够好了。

$ rar.exe l somefile.zipsomefile.zip is not RAR archive

但是,即使WinRAR也会将非RAR文件检测为SFX存档:

$ rar.exe l somefile.srrSFX Volume somefile.srr


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/376238.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号