我将下面的方法称为GetID3MIMEtype('test.docx'(该方法将文件类型更改为"application/zip",但我没有上传任何zip文件——这不是正确的文件类型。
function GetID3MIMEtype($filename) {
$filename = realpath($filename);
$getID3 = new getID3;
$ThisFileInfo = $getID3->analyze($filename);
getid3_lib::CopyTagsToComments($ThisFileInfo);
log_error(print_r($ThisFileInfo['mime_type'], true));
if (empty($ThisFileInfo['error'])) {
if ($ThisFileInfo['fileformat']) {
$temp = explode("/", $ThisFileInfo['mime_type']);
$mime = $temp[0]."/".$ThisFileInfo['fileformat'];
}
else
$mime = $ThisFileInfo['mime_type'];
return $mime;
}
else {
log_error("ID 3 Error - ".$filename." - ".print_r($ThisFileInfo['error'], true));
return false;
}
}
问题
- 什么是getID3类
- 为什么这个类更改文件Mine Type
.docx
文件是压缩文件-尝试将其重命名为.zip
并打开它。您会看到它是XML和其他嵌入文档的集合。
也就是说,getId3
被设计用于多媒体文件类型——视频和音频文件——正如它在项目页面上所说的那样
这是Mime类型而不是Mine类型。它类似于文件扩展名,但功能更强大。它让不同的应用程序(可能在不同的平台上(知道应该如何处理特定的文件。请尝试阅读此页以获取更多信息。
这个getID3库中似乎有一个错误;至少在当前版本CCD_ 4中。
如果打开文件module.archive.zip.php
并更改块
if (!empty($ThisFileInfo['zip']['files']['ppt'])) {
$info['mime_type'] = 'application/vnd.openxmlformats-officedocument.presentationml.presentation';
} elseif (!empty($ThisFileInfo['zip']['files']['xl'])) {
$info['mime_type'] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
} elseif (!empty($ThisFileInfo['zip']['files']['word'])) {
$info['mime_type'] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
}
至
if (!empty($info['zip']['files']['ppt'])) {
$info['mime_type'] = 'application/vnd.openxmlformats-officedocument.presentationml.presentation';
} elseif (!empty($info['zip']['files']['xl'])) {
$info['mime_type'] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
} elseif (!empty($info['zip']['files']['word'])) {
$info['mime_type'] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
}
(即将$ThisFileInfo
更改为$info
(
单词的mime类型从application/zip
变为application/vnd.openxmlformats-officedocument.wordprocessingml.document
。docx