从php中的文件名获取mime类型

Posted

技术标签:

【中文标题】从php中的文件名获取mime类型【英文标题】:Getting mime type from file name in php 【发布时间】:2016-05-19 21:00:39 【问题描述】:

我有以下函数可以根据文件名生成 mime 类型:

    function get_mime_type($file) 
      if (function_exists('finfo_open')) 
        $finfo = finfo_open(FILEINFO_MIME_TYPE);
        $mimetype = finfo_file($finfo, $file);
        finfo_close($finfo);
      
      else 
        $mimetype = mime_content_type($file);
      
      if (empty($mimetype)) $mimetype = 'application/octet-stream';
      return $mimetype;
    

我在这部分代码中调用了这个函数:

        $out['uploads'][] = array(
          'filename' => $fldrow['field_value'],
          'mimetype' => get_mime_type($fldrow['field_value']),
          'id'       => $fldrow['ID'],
        );

$fldrow['field_value'] 包含'card.pdf'

我期待'application/pdf'

我收到'application/octet-stream'

我还使用 Mode=1 尝试了这种更精细的方法: php Mime type checking alternative way of doing it?

Mode=1 的结果相同,Mode=0 的结果为空白。

我在这里做错了什么?

编辑 我的解决方案基于 Dymen1 的回复,并在查看了该方向的其他帖子后如下:

function get_mime_type($filename) 
    $idx = explode( '.', $filename );
    $count_explode = count($idx);
    $idx = strtolower($idx[$count_explode-1]);

    $mimet = array( 
        'txt' => 'text/plain',
        'htm' => 'text/html',
        'html' => 'text/html',
        'php' => 'text/html',
        'css' => 'text/css',
        'js' => 'application/javascript',
        'json' => 'application/json',
        'xml' => 'application/xml',
        'swf' => 'application/x-shockwave-flash',
        'flv' => 'video/x-flv',

        // images
        'png' => 'image/png',
        'jpe' => 'image/jpeg',
        'jpeg' => 'image/jpeg',
        'jpg' => 'image/jpeg',
        'gif' => 'image/gif',
        'bmp' => 'image/bmp',
        'ico' => 'image/vnd.microsoft.icon',
        'tiff' => 'image/tiff',
        'tif' => 'image/tiff',
        'svg' => 'image/svg+xml',
        'svgz' => 'image/svg+xml',

        // archives
        'zip' => 'application/zip',
        'rar' => 'application/x-rar-compressed',
        'exe' => 'application/x-msdownload',
        'msi' => 'application/x-msdownload',
        'cab' => 'application/vnd.ms-cab-compressed',

        // audio/video
        'mp3' => 'audio/mpeg',
        'qt' => 'video/quicktime',
        'mov' => 'video/quicktime',

        // adobe
        'pdf' => 'application/pdf',
        'psd' => 'image/vnd.adobe.photoshop',
        'ai' => 'application/postscript',
        'eps' => 'application/postscript',
        'ps' => 'application/postscript',

        // ms office
        'doc' => 'application/msword',
        'rtf' => 'application/rtf',
        'xls' => 'application/vnd.ms-excel',
        'ppt' => 'application/vnd.ms-powerpoint',
        'docx' => 'application/msword',
        'xlsx' => 'application/vnd.ms-excel',
        'pptx' => 'application/vnd.ms-powerpoint',


        // open office
        'odt' => 'application/vnd.oasis.opendocument.text',
        'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
    );

    if (isset( $mimet[$idx] )) 
     return $mimet[$idx];
     else 
     return 'application/octet-stream';
    
 

【问题讨论】:

你的函数完美地为我工作'get_mime_type' :) 字体呢?虽然它适用于所有这些扩展,但使用 woff,我有一些错误。 请注意 'explode( '.', $filename )' 不是获取文件扩展名的安全方法。相反,您应该使用 pathinfo() 【参考方案1】:

如果您检查文档,您会发现您没有做错任何事情。 但如果你做更多的研究:

https://***.com/a/3664655/3784145

你可以看到你得到的mime类型是正确的,但是扩展不需要与这里解释的mime类型匹配:

http://nl3.php.net/manual/en/function.mime-content-type.php#85879

因此,我将使用文件后缀来确定文件的 mime 类型。 (如第一个示例所示)

【讨论】:

谢谢我根据您的帖子和相关内容在编辑中添加我的解决方案【参考方案2】:

我试图使用 mime_content_type() 和 get_mime_type() 获取文件的 mimeType,但它不起作用。

这对我有用

$file = $request->file('FILE_NAME_IN_REQUEST');
$mimeType = $file->getClientmimeType();

*注意:函数将使用 type = file 的输入字段接收来自 .blade 文件的 $request

【讨论】:

以上是关于从php中的文件名获取mime类型的主要内容,如果未能解决你的问题,请参考以下文章

php实现获取文件mime类型的方法

从 C++ 中的扩展中获取 MIME 类型

获取文件mime类型

Laravel 4 中 File::mime() 的替换(从文件扩展名中获取 mime 类型)

检查文件 mime 类型是不是与 php 中的扩展名匹配

在没有 PECL 扩展的 PHP5 中获取本地文件的 MIME 类型?