现在的位置: 首页 > 综合 > 正文

php可以上传的文件类型

2013年08月06日 ⁄ 综合 ⁄ 共 7988字 ⁄ 字号 评论关闭
PHP上传文件–后缀名与文件类型对照表(几乎涵盖所有文件)
发布时间:2010.05.12 新闻来源:苹果互动 浏览次数:
网上有很多php文件上传的类,文件上传处理是php的一个特色(至少手册上是将此作为php特点来展示的,个人认为php在数组方面的优异功能更有特色),学php的人都知道文件上传怎么做,但很多人在编程中却可能忽视了一些细节问题,那就是文件的类型(MIME)。在表单将文件提交给php做处理之前,浏览器会先解析识别一边是什么类型的文件,之后进入php处理环节,php又会去识别解析此文件的原始类型(并不是说你改成什么后缀就是什么文件)。在这个过程中会有一些浏览器兼容,更准确来说是文件类型解析标识不一致的问题。这样在php处理Post过来的文件类型时就需要根据不同浏览器做更多的判断,最典型的就是IE和火狐下的区别。

            

             比如说我用表单上传一个png的图片。在将文件从临时文件夹移动到指定目录(move_uploaded_file)之前,为了安全性与准确性我们都会检测文件的类型是否符合要求,如果我们要求的是图片文件,那么我们会想到gif->image/gif ,  jpg->image/jpeg , png-> image/png ,bmp->image/bmp 。但事实并不是这样,如果你在不同浏览器,特别是火狐(firefox)和ie下的测试,你会发现火狐下的图片文件上传会报错,提示文件类型不符合要求。原因就是处在文件类型上,因为在火狐下jpg的图片类型(MIME)是image/pjpeg,而ie才是image/jpg。 在ie下png图片的MIME是image/png,在火狐却是:image/x-png。同一文件在不同浏览器下的类型不一样,这样的问题还有很多,不如zip的压缩文件,在ie下是application/zip,而在火狐下则是:application/x-zip-compressed。为了方便大家,更是为了方便自己,今天我特地写了个页面来统一的一次性的完全的彻底的归纳一边php文件上传中的文件类型。

              

             文件的类型MIME (Multipurpose Internet Mail Extensions) 是描述消息内容类型的因特网标准,在w3school提供了MIME的参考手册,但可是并没有区别浏览器之间的区别,所以并不完全可用。最好还是自己测试。下面是我自己写代码测试的结果,绝对准确实用。

                

                       该对应表包含:

php上传图片文件(gif,jpg,bmp,png,psd,ico)
php上传压缩文件(rar,7z,zip)
php上传可执行文件(exe)
php上传视频文件,音乐文件,歌词文件(avi,rmvb,3gp,flv,mp3,wav,krc,lrc)
php上传文本文件和文档文件(word->doc,excel->xls,幻灯片->ppt,pdf,chm)
php上传数据库文件(access文件,sql文件,con文件,日志文件log, dat文件)
php上传网页文件,脚本文件,字体文件(ini,php,html,htm,字体文件:ttf,fon, js ,xml)
php上传其他文件(class类文件,dll动态加载库文件)

              史上最完全oophper亲测版php文件上传之文件类型对应表,ie,火狐各一份。

 

            IE下

id 后缀名 php识别出的文件类型
0 gif image/gif
1 jpg image/jpeg
2 png image/png
3 bmp image/bmp
4 psd application/octet-stream
5 ico image/x-icon
6 rar application/octet-stream
7 zip application/zip
8 7z application/octet-stream
9 exe application/octet-stream
10 avi video/avi
11 rmvb application/vnd.rn-realmedia-vbr
12 3gp application/octet-stream
13 flv application/octet-stream
14 mp3 audio/mpeg
15 wav audio/wav
16 krc application/octet-stream
17 lrc application/octet-stream
18 txt text/plain
19 doc application/msword
20 xls application/vnd.ms-excel
21 ppt application/vnd.ms-powerpoint
22 pdf application/pdf
23 chm application/octet-stream
24 mdb application/msaccess
25 sql application/octet-stream
26 con application/octet-stream
27 log text/plain
28 dat application/octet-stream
29 ini application/octet-stream
30 php application/octet-stream
31 html text/html
32 htm text/html
33 ttf application/octet-stream
34 fon application/octet-stream
35 js application/x-javascript
36 xml text/xml
37 dll application/octet-stream
38 dll application/octet-stream

Firefox下  
id 后缀名 php识别出的文件类型
0 gif image/gif
1 jpg image/pjpeg
2 png image/x-png
3 bmp image/bmp
4 psd application/octet-stream
5 ico image/x-icon
6 rar application/octet-stream
7 zip application/x-zip-compressed
8 7z application/octet-stream
9 exe application/octet-stream
10 avi video/avi
11 rmvb application/vnd.rn-realmedia-vbr
12 3gp application/octet-stream
13 flv application/octet-stream
14 mp3 audio/mpeg
15 wav audio/wav
16 krc application/octet-stream
17 lrc application/octet-stream
18 txt text/plain
19 doc application/msword
20 xls application/vnd.ms-excel
21 ppt application/vnd.ms-powerpoint
22 pdf application/pdf
23 chm application/octet-stream
24 mdb application/msaccess
25 sql text/plain
26 con application/octet-stream
27 log text/plain
28 dat text/plain
29 ini application/octet-stream
30 php application/octet-stream
31 html text/html
32 htm text/html
33 ttf application/octet-stream
34 fon application/octet-stream
35 js text/html
36 xml text/xml
37 dll application/octet-stream
38 class application/java

              附上

上传多文件上传和文件类型判断页面源代码(只做本测试用):

<?php //////////////////////////////////////////////////////////////////////
//PHP上传文件的常用文件类型
//原创:oophper.com  2010.04.22
//没什么技术含量,纯属体力活,不过以后就不用为php上传文件类型发愁了 - -!
//////////////////////////////////////////////////////////////////////
//因为上传文件太多,需要设置php.ini中的 //post_max_size = 8M        我改为1000 。临时测试,待会儿改过来就行了 //upload_max_filesize = 2M   同上。set_time_limit(0);//设置页面处理时间,文件太多我这里改为0:无限时间?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>程序生活网-PHP上传文件的常用文件类型</title>
<style type="text/css" >
.title{
 height:30px;
 margin-bottom:15px;
 padding-left:150px;
 text-align:left;
 border-bottom:1px #666 solid;
}
.lbl{
 width:320px;
 float:left;
}
.upfile{
 height:30px;
 width:500px;
 display:block;
}
</style>
</head>
<?php
if(isset($_POST['submit'])){

 $error = $_FILES['upf']['error'];
 $name = $_FILES['upf']['name'];
 $type = $_FILES['upf']['type'];

 $showhtml = "<table algin=center border='1' cellpadding='1' cellspacing='1' bordercolor='#000000' >
    <thead><tr>
    <th>id</th><th>后缀名</th><th>php识别出的文件类型</th>
    </tr></thead>
    <tbody>";

 //遍历输出
 foreach($error as $key=>$err){
  $showhtml .= "";
  $extname = end(explode('.',$name[$key]));  
  if($err>0){
   $showhtml .= "<tr><td>".$key."</td><td>".$name[$key]."---上传出错".$err."</td><td></td></tr>";
  }else{
   $showhtml .= "<tr><td>".$key."</td><td>".$extname."</td><td>".$type[$key]."</td></tr>";
  }
 }//end foreach
 $showhtml .= "</tbody></table>";

 echo $showhtml; exit;
}

?>
<body>
<form method="post" action="" enctype="multipart/form-data">
<input type="hidden" name="max_file_size" value="1048576000">

<div><h2>php上传图片文件</h2></div>

<label>php上传gif图片文件:.gif</label><input type="file" name="upf[]"  /><br />
<label>php上传jpg图片:.jpg</label><input type="file" name="upf[]"  /><br />
<label>php上传png图片:.png</label><input type="file" name="upf[]"  /><br />
<label>php上传bmp图片:.bmp</label><input type="file" name="upf[]"  /><br />
<label>php上传psd图片:.psd</label><input type="file" name="upf[]"  /><br />
<label>php上传ico图片文件:.ico</label><input type="file" name="upf[]"  /><br />

<div><h2>php上传压缩文件</h2></div>

<label>php上传rar压缩文件:.rar</label><input type="file" name="upf[]"  /><br />
<label>php上传zip压缩文件:.zip</label><input type="file" name="upf[]"  /><br />
<label>php上传7z压缩文件:.7z</label><input type="file" name="upf[]"  /><br />

<div><h2>php上传可执行文件</h2></div>

<label>php上传exe可执行文件:.exe</label><input type="file" name="upf[]"  /><br />

<div><h2>php上传视频文件,音乐文件,歌词文件</h2></div>

<label>php上传avi视频文件:.avi</label><input type="file" name="upf[]"  /><br />
<label>php上传rmvb视频文件:.rmvb</label><input type="file" name="upf[]"  /><br />
<label>php上传3gp视频文件:.3gp</label><input type="file" name="upf[]"  /><br />
<label>php上传flv视频文件:.flv</label><input type="file" name="upf[]"  /><br />
<label>php上传mp3音乐文件:.mp3</label><input type="file" name="upf[]"  /><br />
<label>php上传wav音乐文件:.wav</label><input type="file" name="upf[]"  /><br />
<label>php上传krc歌词文件:.krc</label><input type="file" name="upf[]"  /><br />
<label>php上传lrc歌词文件:.lrc</label><input type="file" name="upf[]"  /><br />

<div><h2>php上传文本文件和文档文件</h2></div>

<label>php上传text文本文件:.txt</label><input type="file" name="upf[]"  /><br />
<label>php上传word文档文件: .doc</label><input type="file" name="upf[]"  /><br />
<label>php上传Excel文档: .xls</label><input type="file" name="upf[]"  /><br />
<label>php上传ppt幻灯片文件:.ppt</label><input type="file" name="upf[]"  /><br />
<label>php上传pdf文件:.pdf</label><input type="file" name="upf[]"  /><br />
<label>php上传chm文件:.chm</label><input type="file" name="upf[]"  /><br />

<div><h2>php上传数据库文件</h2></div>

<label>php上传Access数据库文件:.mdb</label><input type="file" name="upf[]"  /><br />
<label>php上传mysql数据库文件: .sql</label><input type="file" name="upf[]"  /><br />
<label>php上传con数据库文件: .con</label><input type="file" name="upf[]"  /><br />
<label>php上传log日志文件: .log</label><input type="file" name="upf[]"  /><br />
<label>php上传dat数据文件: .dat</label><input type="file" name="upf[]"  /><br />

<div><h2>php上传网页文件,脚本文件,字体文件</h2></div>

<label>php上传ini配置文件: .ini</label><input type="file" name="upf[]"  /><br />
<label>php上传PHP文件上传: .php</label><input type="file" name="upf[]"  /><br />
<label>php上传html网页文件: .html</label><input type="file" name="upf[]"  /><br />
<label>php上传htm网页文件: .htm</label><input type="file" name="upf[]"  /><br />
<label>php上传ttf字体文件: .ttf</label><input type="file" name="upf[]"  /><br />
<label>php上传fon字体文件:.fon</label><input type="file" name="upf[]"  /><br />
<label>php上传js脚本文件: .js</label><input type="file" name="upf[]"  /><br />
<label>php上传xml文件: .xml</label><input type="file" name="upf[]"  /><br />

<div><h2>php上传其他文件</h2></div>

<label>php上传dll文件: .dll</label><input type="file" name="upf[]"  /><br />
<label>php上传class类文件: .class</label><input type="file" name="upf[]"  /><br />

<input type="submit" name="submit" value="提交检测文件类型" />
</form>
<a href="http://www.oophper.com">程序生活网  www.oophper.com</a>
</body>
</html>

抱歉!评论已关闭.