常用Content-Type汇总
Posted LiPK
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用Content-Type汇总相关的知识,希望对你有一定的参考价值。
MIME type
-
定义
媒体类型(通常称为 Multipurpose Internet Mail Extensions 或 MIME 类型)是一种标准,用来表示文档、文件或字节流的性质和格式。
-
语法
MIME 的组成结构非常简单;由类型与子类型两个字符串中间用\'/\'分隔而组成。不允许空格存在。type 表示可以被分多个子类的独立类别。subtype 表示细分后的每个类型。MIME 类型对大小写不敏感,但是传统写法都是小写。
type/subtype
-
独立类型
类型 | 描述 | 示例 |
---|---|---|
text | 表明文件是普通文本,理论上是人类可读 | text/plain , text/html , text/css , text/javascript |
image | 表明是某种图像。不包括视频,但是动态图(比如动态 gif)也使用 image 类型 | image/gif , image/png , image/jpeg , image/bmp , image/webp , image/x-icon |
video | 表明是某种视频文件 | video/webm , video/ogg |
audio | 表明是某种音频文件 | audio/midi , audio/mpeg , audio/webm , audio/ogg , audio/wav |
application | 表明是某种二进制数据 | application/octet-stream , application/xhtml+xml , application/xml , application/pdf |
对于 text 文件类型若没有特定的 subtype,就使用 text/plain。类似的,二进制文件没有特定或已知的 subtype,即使用 application/octet-stream。
完整 MIME 类型
完整的 MIME 类型列表可在 IANA | MIME Media Types 查看。
Content-Type
-
定义
Content-Type 实体头部用于指示资源的 MIME 类型 media type 。
在响应中,Content-Type 标头告诉客户端实际返回的内容的内容类型。
在请求中 (如POST 或 PUT),客户端告诉服务器实际发送的数据类型。
-
语法
Content-Type: text/html; charset=utf-8
Content-Type: multipart/form-data; boundary=something
-
常用
后缀名 | 类型 |
---|---|
.* | application/octet-stream |
.txt | text/plain |
.png | image/png |
.jpeg | image/jpeg |
.xls | application/-excel |
.xls | application/x-xls |
application/pdf | |
.mp3 | audio/mp3 |
.mp4 | video/mp4 |
.exe | application/x-msdownload |
PHP中常用的请求头代码
设置常用的content-type:
//定义编码
header( ‘Content-Type:text/html;charset=utf-8 ‘);
//Atom
header(‘Content-type: application/atom+xml‘);
//CSS
header(‘Content-type: text/css‘);
//Javascript
header(‘Content-type: text/javascript‘);
//JPEG Image
header(‘Content-type: image/jpeg‘);
//JSON
header(‘Content-type: application/json‘);
//PDF
header(‘Content-type: application/pdf‘);
//RSS
header(‘Content-Type: application/rss+xml; charset=ISO-8859-1‘);
//Text (Plain)
header(‘Content-type: text/plain‘);
//XML
header(‘Content-type: text/xml‘);
// ok
header(‘HTTP/1.1 200 OK‘);
//设置一个404头:
header(‘HTTP/1.1 404 Not Found‘);
//设置地址被永久的重定向
header(‘HTTP/1.1 301 Moved Permanently‘);
//转到一个新地址
header(‘Location: http://www.example.org/‘);
//文件延迟转向:
header(‘Refresh: 10; url=http://www.example.org/‘);
print ‘You will be redirected in 10 seconds‘;
//当然,也可以使用html语法实现
// <meta http-equiv="refresh" content="10;http://www.example.org/ />
// override X-Powered-By: PHP:
header(‘X-Powered-By: PHP/4.4.0‘);
header(‘X-Powered-By: Brain/0.6b‘);
//文档语言
header(‘Content-language: en‘);
//告诉浏览器最后一次修改时间
$time = time() - 60; // or filemtime($fn), etc
header(‘Last-Modified: ‘.gmdate(‘D, d M Y H:i:s‘, $time).‘ GMT‘);
//告诉浏览器文档内容没有发生改变
header(‘HTTP/1.1 304 Not Modified‘);
//设置内容长度
header(‘Content-Length: 1234‘);
//设置为一个下载类型
header(‘Content-Type: application/octet-stream‘);
header(‘Content-Disposition: attachment; filename="example.zip"‘);
header(‘Content-Transfer-Encoding: binary‘);
// load the file to send:
readfile(‘example.zip‘);
// 对当前文档禁用缓存
header(‘Cache-Control: no-cache, no-store, max-age=0, must-revalidate‘);
header(‘Expires: Mon, 26 Jul 1997 05:00:00 GMT‘); // Date in the past
header(‘Pragma: no-cache‘);
//设置内容类型:
header(‘Content-Type: text/html; charset=iso-8859-1‘);
header(‘Content-Type: text/html; charset=utf-8‘);
header(‘Content-Type: text/plain‘); //纯文本格式
header(‘Content-Type: image/jpeg‘); //JPG***
header(‘Content-Type: application/zip‘); // ZIP文件
header(‘Content-Type: application/pdf‘); // PDF文件
header(‘Content-Type: audio/mpeg‘); // 音频文件
header(‘Content-Type: application/x-shockw**e-flash‘); //Flash动画
//显示登陆对话框
header(‘HTTP/1.1 401 Unauthorized‘);
header(‘WWW-Authenticate: Basic realm="Top Secret"‘);
print ‘Text that will be displayed if the user hits cancel or ‘;
print ‘enters wrong login data‘;
以上是关于常用Content-Type汇总的主要内容,如果未能解决你的问题,请参考以下文章
常用对照表的参考_chapter-one(Content-Type)