如何从没有扩展名的文件中提取文件扩展名,使用mime type octet-stream?

时间:2015-07-14 14:55:05

标签: php mime-types fileinfo

我有大量文件,其原始文件名已被我的数据库中的ID替换。例如,曾经名称 word_document.doc 的内容现在是 12345 。通过一个过程,我失去了原来的名字。

我现在正尝试提供这些文件以供下载。该人应该能够下载该文件并使用它的原始应用程序查看它。这些文件都采用以下格式之一:

  • .txt(text)
  • .doc(word document)
  • .docx(word document)
  • .wpd(word perfect)
  • .pdf(PDF)
  • .rtf(富文本)
  • .sxw(星级办公室)
  • .odt(开放式办公室)

我正在使用

$fhandle = finfo_open(FILEINFO_MIME);
$file_mime_type = finfo_file($fhandle, $filepath);

获取mime类型,然后将mime类型映射到扩展名。

我遇到的问题是某些文件的mime类型为 octet-stream 。我在线阅读,这种类型似乎是二进制文件的杂项类型。我不能轻易说出扩展需要什么。在某些情况下,当我将其设置为 .wpd 时,它会起作用,而有些情况则不会。 .sxw 也是如此。

1 个答案:

答案 0 :(得分:1)

Symfony2分3步完成

1)mime_content_type

$type = mime_content_type($path);

// remove charset (added as of PHP 5.3)
if (false !== $pos = strpos($type, ';')) {
    $type = substr($type, 0, $pos);
}

return $type;

2)file -b --mime

ob_start();
passthru(sprintf('file -b --mime %s 2>/dev/null', escapeshellarg($path)), $return);
if ($return > 0) {
    ob_end_clean();

    return;
}

$type = trim(ob_get_clean());
if (!preg_match('#^([a-z0-9\-]+/[a-z0-9\-\.]+)#i', $type, $match)) {
    // it's not a type, but an error message
    return;
}

return $match[1];

3)finfo

if (!$finfo = new \finfo(FILEINFO_MIME_TYPE, $path)) {
    return;
}

return $finfo->file($path);

在您获得mime-type后,您可以从预定义的地图获得扩展,例如从herehere

$map = array(
    'application/msword' => 'doc',
    'application/x-msword' => 'doc',
    'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => 'docx',
    'application/pdf' => 'pdf',
    'application/x-pdf' => 'pdf',
    'application/rtf' => 'rtf',
    'text/rtf' => 'rtf',
    'application/vnd.sun.xml.writer' => 'sxw',
    'application/vnd.oasis.opendocument.text' => 'odt',
    'text/plain' => 'txt',
);