为什么在getID3中挖掘类型更改

  • 本文关键字:类型 getID3 php getid3
  • 更新时间 :
  • 英文 :


我将下面的方法称为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;
      }
   } 

问题

  1. 什么是getID3类
  2. 为什么这个类更改文件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

相关内容

  • 没有找到相关文章

最新更新