`
yaoyao19851023
  • 浏览: 32168 次
  • 性别: Icon_minigender_2
  • 来自: 大连
最近访客 更多访客>>
社区版块
存档分类
最新评论

header Content-Type类

阅读更多
header Content-Type类型

具体使用如:header('Content-Type: audio/mpeg');
最近在做MP3防盗链时要查的header的相关信息,网上关于MP3的Content-Type的就有五花8门,下面应该是比较全而且正确的。smile

Content-type 文件类型列表:

<?php

$mimetypes = array(

'ez' => 'application/andrew-inset',

'hqx' => 'application/mac-binhex40',

'cpt' => 'application/mac-compactpro',

'doc' => 'application/msword',

'bin' => 'application/octet-stream',

'dms' => 'application/octet-stream',

'lha' => 'application/octet-stream',

'lzh' => 'application/octet-stream',

'exe' => 'application/octet-stream',

'class' => 'application/octet-stream',

'so' => 'application/octet-stream',

'dll' => 'application/octet-stream',

'oda' => 'application/oda',

'pdf' => 'application/pdf',

'ai' => 'application/postscript',

'eps' => 'application/postscript',

'ps' => 'application/postscript',

'smi' => 'application/smil',

'smil' => 'application/smil',

'mif' => 'application/vnd.mif',

'xls' => 'application/vnd.ms-excel',

'ppt' => 'application/vnd.ms-powerpoint',

'wbxml' => 'application/vnd.wap.wbxml',

'wmlc' => 'application/vnd.wap.wmlc',

'wmlsc' => 'application/vnd.wap.wmlscriptc',

'bcpio' => 'application/x-bcpio',

'vcd' => 'application/x-cdlink',

'pgn' => 'application/x-chess-pgn',

'cpio' => 'application/x-cpio',

'csh' => 'application/x-csh',

'dcr' => 'application/x-director',

'dir' => 'application/x-director',

'dxr' => 'application/x-director',

'dvi' => 'application/x-dvi',

'spl' => 'application/x-futuresplash',

'gtar' => 'application/x-gtar',

'hdf' => 'application/x-hdf',

'js' => 'application/x-javascript',

'skp' => 'application/x-koan',

'skd' => 'application/x-koan',

'skt' => 'application/x-koan',

'skm' => 'application/x-koan',

'latex' => 'application/x-latex',

'nc' => 'application/x-netcdf',

'cdf' => 'application/x-netcdf',

'sh' => 'application/x-sh',

'shar' => 'application/x-shar',

'swf' => 'application/x-shockwave-flash',

'sit' => 'application/x-stuffit',

'sv4cpio' => 'application/x-sv4cpio',

'sv4crc' => 'application/x-sv4crc',

'tar' => 'application/x-tar',

'tcl' => 'application/x-tcl',

'tex' => 'application/x-tex',

'texinfo' => 'application/x-texinfo',

'texi' => 'application/x-texinfo',

't' => 'application/x-troff',

'tr' => 'application/x-troff',

'roff' => 'application/x-troff',

'man' => 'application/x-troff-man',

'me' => 'application/x-troff-me',

'ms' => 'application/x-troff-ms',

'ustar' => 'application/x-ustar',

'src' => 'application/x-wais-source',

'xhtml' => 'application/xhtml+xml',

'xht' => 'application/xhtml+xml',

'zip' => 'application/zip',

'au' => 'audio/basic',

'snd' => 'audio/basic',

'mid' => 'audio/midi',

'midi' => 'audio/midi',

'kar' => 'audio/midi',

'mpga' => 'audio/mpeg',

'mp2' => 'audio/mpeg',

'mp3' => 'audio/mpeg',

'aif' => 'audio/x-aiff',

'aiff' => 'audio/x-aiff',

'aifc' => 'audio/x-aiff',

'm3u' => 'audio/x-mpegurl',

'ram' => 'audio/x-pn-realaudio',

'rm' => 'audio/x-pn-realaudio',

'rpm' => 'audio/x-pn-realaudio-plugin',

'ra' => 'audio/x-realaudio',

'wav' => 'audio/x-wav',

'pdb' => 'chemical/x-pdb',

'xyz' => 'chemical/x-xyz',

'bmp' => 'image/bmp',

'gif' => 'image/gif',

'ief' => 'image/ief',

'jpeg' => 'image/jpeg',

'jpg' => 'image/jpeg',

'jpe' => 'image/jpeg',

'png' => 'image/png',

'tiff' => 'image/tiff',

'tif' => 'image/tiff',

'djvu' => 'image/vnd.djvu',

'djv' => 'image/vnd.djvu',

'wbmp' => 'image/vnd.wap.wbmp',

'ras' => 'image/x-cmu-raster',

'pnm' => 'image/x-portable-anymap',

'pbm' => 'image/x-portable-bitmap',

'pgm' => 'image/x-portable-graymap',

'ppm' => 'image/x-portable-pixmap',

'rgb' => 'image/x-rgb',

'xbm' => 'image/x-xbitmap',

'xpm' => 'image/x-xpixmap',

'xwd' => 'image/x-xwindowdump',

'igs' => 'model/iges',

'iges' => 'model/iges',

'msh' => 'model/mesh',

'mesh' => 'model/mesh',

'silo' => 'model/mesh',

'wrl' => 'model/vrml',

'vrml' => 'model/vrml',

'css' => 'text/css',

'html' => 'text/html',

'htm' => 'text/html',

'asc' => 'text/plain',

'txt' => 'text/plain',

'rtx' => 'text/richtext',

'rtf' => 'text/rtf',

'sgml' => 'text/sgml',

'sgm' => 'text/sgml',

'tsv' => 'text/tab-separated-values',

'wml' => 'text/vnd.wap.wml',

'wmls' => 'text/vnd.wap.wmlscript',

'etx' => 'text/x-setext',

'xsl' => 'text/xml',

'xml' => 'text/xml',

'mpeg' => 'video/mpeg',

'mpg' => 'video/mpeg',

'mpe' => 'video/mpeg',

'qt' => 'video/quicktime',

'mov' => 'video/quicktime',

'mxu' => 'video/vnd.mpegurl',

'avi' => 'video/x-msvideo',

'movie' => 'video/x-sgi-movie',

'ice' => 'x-conference/x-cooltalk',

);
?>
分享到:
评论

相关推荐

    Content-Type

    Content-Type 是 HTTP 协议中的一个 header 字段,用于指示返回消息的 MIME 类型。它是服务器响应消息中非常重要的内容,表明后面的文档属于什么 MIME 类型。Content-Type 的格式为:Content-Type: [type]/[subtype]...

    Content-Type详解

    "Content-Type详解" Content-Type是HTTP协议中一个非常重要的头域,用于指示Web服务器发送的响应正文的格式和类型。 Content-Type头域的格式为:Content-Type: [type]/[subtype]; parameter。其中,type表示顶级...

    常用Content-type

    在Web开发中,特别是PHP编程中,`header()`函数常用来设置HTTP响应头,其中`Content-type`是一个重要的参数,用于告知浏览器如何解析服务器返回的数据。 `Content-type`的设置对网页的正常展示至关重要,因为它决定...

    php中header设置常见文件类型的content-type

    同时,如果想要在页面跳转前执行一些代码,可以在header函数前添加输出语句(如echo或print),但一旦有任何实际输出(哪怕是空格或换行符)发送到浏览器,就不能再使用header函数进行重定向或设置Content-Type了。...

    Go-依赖Content-Typeheader自动地解析request.Body

    parser := multipart.NewReader(r.Body, r.Header.Get("Content-Type")) part, err := parser.NextPart() for err == nil { // 处理part part.Close() part, err = parser.NextPart() } ``` 4. **自定义...

    php header Content-Type类型小结

    header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="filename.ext"'); ``` 这将触发浏览器以附件形式下载文件,并指定文件名为`filename.ext`。 在开发过程...

    header中Content-Disposition的作用与使用方法

    Content-Disposition: disposition-type [";" disposition-parm] 其中,disposition-type指定了内容应该如何展示,主要有以下几种: - attachment:通常用于指示内容应该被下载,并且在下载时保存为文件,用户通常...

    Spring Boot 返回Content-Type解决方案

    前端同学需要Content-Type 字段返回,根据文件的类型不同返回不同的类型;还有就是直接打开一个下载链接,对于Chrome这样的浏览器其实支持自适应预览的效果。https://tool.oschina.net/commons/ 这里的链接中有好多...

    ContentType大全

    header('Content-Type: text/html'); ``` 在Java Servlet中,可以在`HttpServletResponse`对象上设置: ```java response.setContentType("text/html"); ``` 在JavaScript的AJAX请求中,可以设置`Content-Type`头...

    文件下载response.setHeader()下载中文文件名乱码问题解决办法.pdf

    response.setHeader("Content-Type", "video/x-msvideo"); 在设置 Content-Disposition 头字段之前,一定要设置 Content-Type 头字段。 此外,本文还讨论了 Authorization 头的作用。Authorization 头用于在客户端...

    为何要小心Nginx的add_header指令详解

    前言 大家都知道,nginx配置文件通过使用...content-type: text/html; charset=UTF-8 vary: Accept-Encoding, Cookie cache-control: max-age=3, must-revalidate last-modified: Thu, 07 Feb 2019 03:54:54 GMT X-Cach

    VUE项目axios请求头更改Content-Type操作

    在本文中,我们将深入探讨如何在Vue项目中使用Axios,并特别关注如何更改请求头中的`Content-Type`字段。 首先,让我们分析提供的代码片段: ```javascript const httpServer = (opts, data) =&gt; { const token = ...

    文件下载及web文件的contentType类型大全

    本文将详细介绍如何实现文件下载功能以及不同文件类型的`Content-Type`设置。 #### 一、文件下载的基本实现 文件下载的核心在于通过HTTP响应将文件内容发送给客户端,并且通过设置特定的HTTP头部来告诉浏览器应该...

    nginx配置教程之add_header的坑详解

    如果服务器已经设置了 `Content-Type`,而我们尝试再次使用 `add_header` 设置,结果会导致两个 `Content-Type` 头部,这通常是不被期望的。 ```nginx default_type 'text/plain'; location = /a { add_header ...

    go-charset:从 header 和 html content-type 获取内容字符集

    从 header 和 html content-type 获取内容字符集。 安装 go get -u github.com/mozillazg/go-charset 用法 s := `&lt;meta http-equiv="Content-Type" content="text/html; charset=gbk"/&gt;` fmt . Println ( ...

    nginx add_header指令使用方法

    但是有一个十分常用的response header比较特性,就是Content-Type,可以在它设置了类型的同时还会指定charset,例如:“text/html; charset=utf-8”,由于其存在分号,而分号在配置文件中作为结束符,所以在配置的...

    详解Vue-axios 设置请求头问题

    'Content-Type': 'application/json',//设置请求头请求格式为JSON 'access_token': this.token //设置token 其中K名要和后端协调好 }, params:{} }).then((response)=&gt;{}) 下面看下axios设置请求头内容 axios...

    php利用header函数下载各种文件

    header("Content-Type: $ctype"); header("Content-Disposition: attachment; filename=$filename"); header("Content-Length: $len"); // 输出文件内容 readfile($file); } ?&gt; ``` 在上述代码中,我们做了...

Global site tag (gtag.js) - Google Analytics