• 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");

  • 相关阅读:
    8种元素定位方式
    接口MD5加密如何测试?
    web自动化测试框架 —数据驱动测试
    等待方式
    全面开展测试需求分析
    字符串格式化(%方式 与 format方式)
    Python中八大基本数据类型之 集合
    Python中 __new__ 和 __init__ 的区别
    C/S模式与B/S模式的工作原理
    剑指offer--把二叉树打印成多行
  • 原文地址:https://www.cnblogs.com/rsapaper/p/5844232.html
Copyright © 2020-2023  润新知