3

获取上传文件的 mime 类型非常简单:

echo mime_content_type($fileatt['tmp_name']);

但是,我还想检查压缩文件中包含的文件的 mime 类型。解压缩我的文件后(循环通过 zip 中的文件以及i当前文件在哪里),我尝试过:

$info = pathinfo($zip->getNameIndex($i));
echo mime_content_type($info['dirname'] . "\\" . $info['basename']);

这给出了错误:警告:mime_content_type() [function.mime-content-type]: File or path not found '.\foo.pdf' in C:\Users\<user>\<website>\validation.phpon line 56

我意识到dirname压缩文件的 zip 文件是相对于 zip 文件的,而不是绝对路径,所以我尝试了:

$a = pathinfo($fileatt['tmp_name']);
$b = $a['dirname'] . "\\" . $info['basename'];
echo mime_content_type($b);

这给出了错误:Warning: mime_content_type() [function.mime-content-type]: File or path not found 'C:\xampp\tmp\foo.pdf' 在C:\Users\<user>\<website>\validation.php第 56 行

任何人都可以对文件的路径有所了解吗?(我怀疑答案可能与从压缩文件中获取图像高度和宽度的评论相同,但有没有其他方法?)

更新

感谢 Baba,以下操作确实有效:

$fp = fopen('zip://C:\Users\<user>\<website>\test.zip#foo.jpg', "r");

(请注意,当我给出 zip 文件的完整路径时,我只能让它工作,而不是像通过表单上传文件时那样的 tmp 文件)。但是,尝试获取 mime-type: 会echo mime_content_type($fp);产生错误:

Warning: mime_content_type() [function.mime-content-type]: stream does not support seeking in C:\Users\<user>\<website>\includes\validation.php on line 70

无论文件类型如何,都会发生这种情况(即在http://php.net/manual/en/ziparchive.getstream.php的唯一评论中所述的问题似乎对我没有影响)。

顺便说一句,这也是我尝试不同方法时遇到的相同错误:$fp = $zip->getStream('foo.jpg');

我知道在 SO 上还有其他几个“不支持流”的问题,但我无法弄清楚它们与我的问题有何关系,我希望既然有人特别建议了这种方法,可能会有一个很好的答案.. .

(ps 我没有使用这些finfo_*功能,因为我的主机目前拒绝安装 PHP v5.3)。

4

3 回答 3

2

我知道你提到你找不到 php <5.3 的答案,但我有点卡住了,只是想通了,希望它对最新版本的人有用 - 我看不到它写在别处。

很简单,您可以在二进制数据上使用finfo->buffer来提取 MIME 类型,无需将内容提取到新文件即可使用。

$fileToUnzip = 0;

$zip = new ZipArchive;
$zip->open("dir/archive.zip");
$binary = $zip->getFromIndex($fileToUnzip);
$filename = $zip->getNameIndex($fileToUnzip);
$zip->close();

$finfo = new finfo(FILEINFO_MIME_TYPE);
$MIMETypeAndCharset = $finfo->buffer($binary);

// discard charset info
$MIMETypeAndCharsetArray = explode(';', $MIMETypeAndCharset);
$MIMEtype = $MIMETypeAndCharsetArray[0];


// you can change the source of an iframe to this php file in order to view a preview
// If the browser can't handle the file, the user is presented with a download box

header('Content-Type:$MIMEtype');
header('Content-Disposition: inline; filename="July Report.pdf"')
echo $binary;
于 2014-07-14T15:13:06.143 回答
2

A. 你可以先尝试

 mime_content_type('zip:///path/to/file.zip#'. $chapterZip->getNameIndex ( $i ));

B. 我现在只能想到的是替代品,因为mime_content_type它可能不是最好的方法,但我相信它会浮出水面,直到我找到更好的解决方案

$chapterZip = new ZipArchive ();
if ($chapterZip->open ( "stockoverflow.zip" )) {
    for($i = 0; $i < $chapterZip->numFiles; $i ++) {
        var_dump ( mime_content_type_replacement ( $chapterZip->getNameIndex ( $i ) ) );
    }
}

file extension使用和的替换函数finfo_open ( FILEINFO_MIME )

function mime_content_type_replacement($filename) {

    $mime_types = 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',

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

    $ext = pathinfo ( $filename, PATHINFO_EXTENSION );
    if (array_key_exists ( $ext, $mime_types )) {
        return $mime_types [$ext];
    } elseif (function_exists ( 'finfo_open' )) {
        $finfo = finfo_open ( FILEINFO_MIME );
        $mimetype = finfo_file ( $finfo, $filename );
        finfo_close ( $finfo );
        return $mimetype;
    } else {
        return 'application/octet-stream';
    }
}

更多的哑剧类型

PHP / Mime Types - 公开可用的 mime 类型列表?

http://snipplr.com/view/1937/

编辑 1

刚刚测试了以下,它的工作原理

$fp = fopen('zip://C:\stockoverflow.zip#1.MOV.xml',"r");

编辑 2

A.mime_content_type($fp)不起作用,因为mime_content_type只接受字符串参数,请参阅http://php.net/manual/en/function.mime-content-type.php

B. 不知道为什么你还在坚持,mime_content_type因为它也已经贬值了

此功能已被弃用,因为 PECL 扩展 Fileinfo 以更简洁的方式提供了相同的功能(以及更多功能)。

C.$fileatt['tmp_name']直接处理并不理想.. 它是一个临时文件,不能被操纵.. 要处理该文件,您需要将其复制到您的 PHP 将拥有访问它的完全权限的服务器

D. ZipArchive::getStream仅适用于zip文件的本地副本,而不适用于临时上传文件

于 2012-04-28T12:09:14.163 回答
0

使用上面简单的[你可以说更大的一个]功能,你可以提取或获取文件的mime类型或者你可以说内容。

但是之前,为了使用这个功能,你可能需要做一些预先配置,

就像您必须确保在 php.ini 文件中打开或配置了 curl 扩展、文件系统相关扩展和 finfo 扩展。

在这里,我简单描述一下这个函数的整个过程。

  1. 首先,我们将所有更新的 mime 类型存储为来自官方 apache mime 类型 url 的数组。

您还可以在使用 url 的 apache conf 目录中获取此 mime 类型文件。在这个函数中,我们使用 live url 来获取所有的 mime 类型。

  1. 但是这个函数的第零个过程是验证 apache url 是否存在。

  2. 验证 url 后,如果 url 被验证 [表示 live ],我们将来自该 url 的所有 mime 存储为一个名为$mimes的数组

如果 url 不存在或不存在,我们将手动创建一个具有一些通用扩展名的数组。

  1. 然后我们将内容验证为文件。

  2. 然后我们检查 PHP pathinfo 函数以确保是否有任何文件扩展名。如果有,请将其存储起来。

  3. 之后,我们使用我们的内容扩展名检查$mimes数组作为$mimes 数组索引。

  4. 最后,我们通过$content_mime 变量将$mimes 数组的索引值作为内容 mime 类型返回。

而已。

<?php
    /**
     * **get_content_mime_type
     *
     * @param  string $content, the content or the file whose mime type you want to know.
     * @return string
     */
    function get_content_mime_type($content)
    {
        $url = 'http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types';
        $url_live = false;
        $handle = curl_init($url);
        curl_setopt_array($handle, array(
            CURLOPT_FOLLOWLOCATION => true,
            CURLOPT_NOBODY => true,
            CURLOPT_HEADER => false,
            CURLOPT_RETURNTRANSFER => false,
            CURLOPT_SSL_VERIFYHOST => false,
            CURLOPT_SSL_VERIFYPEER => false
        ));
        $response = curl_exec($handle);
        $httpCode = curl_getinfo($handle, CURLINFO_EFFECTIVE_URL);
        $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);
        if ($httpCode == 200)
        {
            $url_live = true;
        }
        $url_live = $url_live;
        curl_close($handle);
        $mimes = array();
        if ($url_live)
        {
            $mimes_file = file_get_contents($url);
            preg_match_all('#^([^\s]{2,}?)\s+(.+?)$#ism', $mimes_file, $matches, PREG_SET_ORDER);
            foreach ($matches as $match)
            {
                $exts = explode(" ", $match[2]);
                foreach ($exts as $ext)
                {
                    $mimes[$ext] = $match[1];
                }
            }
        }
        else
        {
            $mimes = 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',
            );
        }
        $content_mime = 'unknown';
        if (is_file($content))
        {
            if (isset(pathinfo($content) ['extension']))
            {
                $content_ext = pathinfo($content) ['extension'];
                if (isset($mimes[$content_ext]))
                {
                    $content_mime = $mimes[$content_ext];
                }
                else
                {
                    if (is_readable($content) && is_executable($content))
                    {
                        $finfo = finfo_open(FILEINFO_MIME_TYPE);
                        $content_mime = finfo_file($finfo, $content);
                        if ($content_mime === null | $content_mime === "")
                        {
                            $content_mime = "application/octet-stream";
                        }
                        else
                        {
                            $content_mime = $content_mime;
                        }
                        finfo_close($finfo);
                    }
                    else
                    {
                        $content_mime = "application/octet-stream";
                    }
                }
            }
        }
        else
        {
            // return whatever you want
            // $content_mime = 'unknown';
            
        }
        $content_mime = $content_mime;
        return $content_mime;
    }
    ?>
于 2021-07-09T15:54:02.553 回答