我有以下 PHP 代码显示上传文件的 mime 类型。
<?php
if ($_POST) {
var_dump($_FILES);
$finfo = new finfo(FILEINFO_MIME_TYPE);
var_dump($finfo->file($_FILES['file']['tmp_name']));
} else{
?>
<form method="POST" enctype="multipart/form-data"><input name="file" type="file"><input name="submit" value="send" type="submit"/></form>
<?php
}
使用此脚本上传 somefile.csv 的结果如下。
array (size=1)
'file' =>
array (size=5)
'name' => string 'somefile.csv' (length=12)
'type' => string 'text/csv' (length=8)
'tmp_name' => string '/tmp/phpKiwqtu' (length=14)
'error' => int 0
'size' => int 3561
string 'text/x-fortran' (length=14)
所以当然 mime 类型应该是 text/csv。但是我使用的框架(Symfony 1.4)使用文件信息的方法。
此外,我进一步测试了该命令(在 Ubuntu 上)似乎file --mime-type somefile.csv
返回somefile.csv: text/x-fortran
并且命令mimetype somefile.csv
返回somefile.csv: text/csv
. somefile.csv 是用 MSOffice 创建的(我不知道这是否重要)。显然mimetype
使用了一些很棒的 mime 数据库(http://freedesktop.org/wiki/Software/shared-mime-info),而file
没有。
- PHP 使用
file
还是mimetype
不使用? - 此外,我不确定在这里做什么;我上传的文件格式错误吗?我必须使用不同的 mime 数据库吗?PHP被窃听了吗?这里发生了什么?
编辑:
之所以将其检测为 fortran 程序,是因为 somefile.csv 仅包含以下内容:
somecolumn;
C F;
我相信CSV文件的上述内容是有效的,对吗?如果一个字段包含空格,则该字段不必放在引号内,对吗?