获取上传文件的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]:第56行C:\Users\<user>\<website>\validation.php
中找不到文件或路径'。\ foo.pdf'
我意识到压缩文件的dirname
是相对于zip文件的,而不是绝对路径,所以我试过了:
$a = pathinfo($fileatt['tmp_name']);
$b = $a['dirname'] . "\\" . $info['basename'];
echo mime_content_type($b);
给出错误:警告:mime_content_type()[function.mime-content-type]:在第56行的C:\Users\<user>\<website>\validation.php
中找不到'C:\ xampp \ tmp \ foo.pdf'的文件或路径< / p>
任何人都可以在文件的路径上投射任何光吗? (我怀疑答案可能与getting image height and width from zipped files上的评论相同,但有没有替代方法?)
更新
感谢Baba,以下内容确实有效:
$fp = fopen('zip://C:\Users\<user>\<website>\test.zip#foo.jpg', "r");
(n.b。我只能在提供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上还有其他几个“流不支持”的问题,但是我无法弄清楚它们与我的问题有什么关系,我希望自从这个方法被特别暗示有人可能有一个好的回答...
(p.s。我没有使用finfo_*
函数,因为我的主机当前拒绝安装PHP v5.3。)
答案 0 :(得分:2)
一个。你可以先尝试
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';
}
}
更多mime类型
PHP / Mime Types - List of mime types publically available?
修改1
刚刚测试了以下内容并且有效
$fp = fopen('zip://C:\stockoverflow.zip#1.MOV.xml',"r");
修改2
一个。 mime_content_type($fp)
无效,因为mime_content_type
只接受字符串参数,请参阅http://php.net/manual/en/function.mime-content-type.php
B中。我不确定为什么你仍然坚持mime_content_type
,因为它也已被折旧
此功能已弃用,因为PECL扩展名Fileinfo以更清晰的方式提供相同的功能(及更多)。
℃。直接处理$fileatt['tmp_name']
并不理想..它是一个临时文件而不是被操纵..为了你在该文件上工作,你需要将它复制到你的PHP将拥有访问它的完全权限的服务器上
d。 ZipArchive::getStream
仅适用于zip
文件的本地副本而非临时上传文件
答案 1 :(得分:2)
我知道你提到你找不到php&lt; 5.3的答案,但是我有点坚持这个并且想出来了,希望它会对最新版本的用户有用 - 我不能看不到别的地方写的。
很简单,您可以对二进制数据使用finfo->buffer来提取MIME类型,该类型可用而无需将内容提取到新文件。
$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;
答案 2 :(得分:0)
使用上面简单的[你可以说更大的?]功能,你可以提取或获取文件的mime类型,或者你可以说内容。
但在使用此功能之前,您可能需要进行一些预配置,
<块引用>就像您必须确保在 php.ini 文件中打开或配置了 curl 扩展名、文件系统相关扩展名和 finfo 扩展名一样。
这里,我简单描述一下这个功能的整个过程。
你也可以在你的 apache conf 目录中得到这个 mime 类型的文件 不再使用 url。在这个函数中,我们使用 live url 来获取所有 mime 类型。
但是这个函数的第零个过程是验证 apache url 是否有效。
在验证 url 后,如果 url 被验证 [意味着实时],我们将该 url 中的所有 mime 存储为一个名为 $mimes
的数组如果 url 不存在或不存在,我们将手动创建一个具有一些通用扩展名的数组。
然后我们将内容验证为文件。
然后我们检查 PHP pathinfo 函数以确保是否存在任何文件扩展名。如果存在,请将其存储。
之后,我们检查 $mimes 数组和我们的内容扩展 作为 $mimes 数组索引。
最后我们通过$content_mime变量作为内容mime类型返回$mimes数组的索引值< /strong>。
就是这样。
<?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;
}
?>