zoukankan      html  css  js  c++  java
  • PHP header函数设置http报文头示例详解

    //定义编码
    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');

    //200 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';

    #附:HTTP header 详解

    Requests部分

    Header解释示例
    Accept指定客户端能够接收的内容类型Accept: text/plain, text/html
    Accept-Charset浏览器可以接受的字符编码集。Accept-Charset: iso-8859-5
    Accept-Encoding指定浏览器可以支持的web服务器返回内容压缩编码类型。Accept-Encoding: compress, gzip
    Accept-Language浏览器可接受的语言Accept-Language: en,zh
    Accept-Ranges可以请求网页实体的一个或者多个子范围字段Accept-Ranges: bytes
    AuthorizationHTTP授权的授权证书Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
    Cache-Control指定请求和响应遵循的缓存机制Cache-Control: no-cache
    Connection表示是否需要持久连接。(HTTP 1.1默认进行持久连接)Connection: close
    CookieHTTP请求发送时,会把保存在该请求域名下的所有cookie值一起发送给web服务器。Cookie: $Version=1; Skin=new;
    Content-Length请求的内容长度Content-Length: 348
    Content-Type请求的与实体对应的MIME信息Content-Type: application/x-www-form-urlencoded
    Date请求发送的日期和时间Date: Tue, 15 Nov 2010 08:12:31 GMT
    Expect请求的特定的服务器行为Expect: 100-continue
    From发出请求的用户的EmailFrom: user@email.com
    Host指定请求的服务器的域名和端口号Host: www.zcmhi.com
    If-Match只有请求内容与实体相匹配才有效If-Match: “737060cd8c284d8af7ad3082f209582d”
    If-Modified-Since如果请求的部分在指定时间之后被修改则请求成功,未被修改则返回304代码If-Modified-Since: Sat, 29 Oct 2010 19:43:31 GMT
    If-None-Match如果内容未改变返回304代码,参数为服务器先前发送的Etag,与服务器回应的Etag比较判断是否改变If-None-Match: “737060cd8c284d8af7ad3082f209582d”
    If-Range如果实体未改变,服务器发送客户端丢失的部分,否则发送整个实体。参数也为EtagIf-Range: “737060cd8c284d8af7ad3082f209582d”
    If-Unmodified-Since只在实体在指定时间之后未被修改才请求成功If-Unmodified-Since: Sat, 29 Oct 2010 19:43:31 GMT
    Max-Forwards限制信息通过代理和网关传送的时间Max-Forwards: 10
    Pragma用来包含实现特定的指令Pragma: no-cache
    Proxy-Authorization连接到代理的授权证书Proxy-Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
    Range只请求实体的一部分,指定范围Range: bytes=500-999
    Referer先前网页的地址,当前请求网页紧随其后,即来路Referer: http://www.zcmhi.com/archives/71.html
    TE客户端愿意接受的传输编码,并通知服务器接受接受尾加头信息TE: trailers,deflate;q=0.5
    Upgrade向服务器指定某种传输协议以便服务器进行转换(如果支持)Upgrade: HTTP/2.0, SHTTP/1.3, IRC/6.9, RTA/x11
    User-AgentUser-Agent的内容包含发出请求的用户信息User-Agent: Mozilla/5.0 (Linux; X11)
    Via通知中间网关或代理服务器地址,通信协议Via: 1.0 fred, 1.1 nowhere.com (Apache/1.1)
    Warning关于消息实体的警告信息Warn: 199 Miscellaneous warning

    Responses 部分  

    Header解释示例
    Accept-Ranges表明服务器是否支持指定范围请求及哪种类型的分段请求Accept-Ranges: bytes
    Age从原始服务器到代理缓存形成的估算时间(以秒计,非负)Age: 12
    Allow对某网络资源的有效的请求行为,不允许则返回405Allow: GET, HEAD
    Cache-Control告诉所有的缓存机制是否可以缓存及哪种类型Cache-Control: no-cache
    Content-Encodingweb服务器支持的返回内容压缩编码类型。Content-Encoding: gzip
    Content-Language响应体的语言Content-Language: en,zh
    Content-Length响应体的长度Content-Length: 348
    Content-Location请求资源可替代的备用的另一地址Content-Location: /index.htm
    Content-MD5返回资源的MD5校验值Content-MD5: Q2hlY2sgSW50ZWdyaXR5IQ==
    Content-Range在整个返回体中本部分的字节位置Content-Range: bytes 21010-47021/47022
    Content-Type返回内容的MIME类型Content-Type: text/html; charset=utf-8
    Date原始服务器消息发出的时间Date: Tue, 15 Nov 2010 08:12:31 GMT
    ETag请求变量的实体标签的当前值ETag: “737060cd8c284d8af7ad3082f209582d”
    Expires响应过期的日期和时间Expires: Thu, 01 Dec 2010 16:00:00 GMT
    Last-Modified请求资源的最后修改时间Last-Modified: Tue, 15 Nov 2010 12:45:26 GMT
    Location用来重定向接收方到非请求URL的位置来完成请求或标识新的资源Location: http://www.zcmhi.com/archives/94.html
    Pragma包括实现特定的指令,它可应用到响应链上的任何接收方Pragma: no-cache
    Proxy-Authenticate它指出认证方案和可应用到代理的该URL上的参数Proxy-Authenticate: Basic
    refresh应用于重定向或一个新的资源被创造,在5秒之后重定向(由网景提出,被大部分浏览器支持)

    Refresh: 5; url=

    http://www.zcmhi.com/archives/94.html

    Retry-After如果实体暂时不可取,通知客户端在指定时间之后再次尝试Retry-After: 120
    Serverweb服务器软件名称Server: Apache/1.3.27 (Unix) (Red-Hat/Linux)
    Set-Cookie设置Http CookieSet-Cookie: UserID=JohnDoe; Max-Age=3600; Version=1
    Trailer指出头域在分块传输编码的尾部存在Trailer: Max-Forwards
    Transfer-Encoding文件传输编码Transfer-Encoding:chunked
    Vary告诉下游代理是使用缓存响应还是从原始服务器请求Vary: *
    Via告知代理客户端响应是通过哪里发送的Via: 1.0 fred, 1.1 nowhere.com (Apache/1.1)
    Warning警告实体可能存在的问题Warning: 199 Miscellaneous warning
    WWW-Authenticate表明客户端请求实体应该使用的授权方案WWW-Authenticate: Basic

  • 相关阅读:
    iOS常用第三方库之Masonry
    iOS超全面试题,面试前看一看,不错
    自学安卓练习作品单词APP(1)-安卓的hello word与有道字典防爬虫破解
    shrio的rememberMe不起作用
    上传组件uploadify在spring中返回406 / Not Acceptable 问题解决
    由max_allowed_packet引发的mysql攻防大战
    又到毕业季你为什么没有工作
    mavan下scala编译中文乱码的问题.以及内存溢出问题解决
    @RestController失效
    BeanInstantiationException: Failed to instantiate [java.time.LocalDateTime]
  • 原文地址:https://www.cnblogs.com/zhouguowei/p/5320438.html
Copyright © 2011-2022 走看看