zoukankan      html  css  js  c++  java
  • Pragma: nocache

    PHP Advanced and Object-Oriented Programming
    Larry Ullman
     
    Last-Modified 最后修改时间
    Expires 过期时间
    Pragma 编译提示
    Cache-Control 缓存控制
    如缓存系统发现Last-Modified的值比页面缓存版本的时间更接近当前时间,它就知道应该使用来自服务器的更新页面版本。
     

    Caching—both in Web browsers and proxy servers—can be affected using PHP’s header() function. Four header types are involved:

    • Last-Modified

    • Expires

    • Pragma

    • Cache-Control

    The first three header types are part of the HTTP 1.0 standard. The Last-Modified header uses a UTC(Coordinated Universal Time) date-time value. If a caching system sees that the Last-Modified valueis more recent than the date on the cached version of the page, it knows to use the new version from the server. Expires is used as an indicator as to when a cached version of the page should no longer be used (inGreenwich Mean Time).

    Setting an Expires value in the past should always force the page from theserver to be used:

    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

    Pragma is just a declaration for how the page data should be handled. To avoid caching of a page, use

    header("Pragma: no-cache")

    The Cache-Control header was added in HTTP 1.1 and is a more finely tuned option.

    Directive         Meaning

    public        Can be cached anywhere

    private           Only cached by browsers

    no-cache          Cannot be cached anywhere

    must-revalidate  Caches must check for newer versions

    proxy-revalidate  Proxy caches must check for newer versions

    max-age      A duration, in seconds, that the content is cacheable

    s-maxage     Overrides the max-age value for shared caches

    Keep all systems from caching a page

    header("Last-Modified: Mon, 26 Jul 2016 05:00:00 GMT"); //Right now!

    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); //Way back then!

    header("Pragma: no-cache");

    header("Cache-Control: no-cache");

  • 相关阅读:
    Team--时代团队第一次团队项目---基于大作业的思考
    敏捷软件开发
    求一个二维数组的最大子矩阵
    电梯调度分析(二)
    一个简单算法的设计(一个数组中连续区间和的最大值)
    电梯调度算法(-)
    "top k"问题的深入探讨
    js中判断对象是否为空的方法
    Spring Security 3.x 完整入门教程
    Filter 过滤器
  • 原文地址:https://www.cnblogs.com/rsapaper/p/5844232.html
Copyright © 2011-2022 走看看