代码之家  ›  专栏  ›  技术社区  ›  AlexV

php session_cache_limiter()private和nocache http expires date问题

  •  2
  • AlexV  · 技术社区  · 15 年前

    如果您查看函数的php文档帮助 session_cache_limiter() ,您将看到,如果将cache_limiter参数设置为private或nocache,则expires http头将设置为const date(周四,1981年11月19日08:52:00 gmt)。我知道这是过去避免缓存的日期,但为什么这个日期/时间特别重要?这不是0日,我猜这是某种复活节彩蛋。如果它是过去的某种虚拟值,我可以将其更改为其他值(仍然是过去的值)并使私有/无缓存机制仍然有效吗?

    1 回复  |  直到 15 年前
        1
  •  5
  •   jspcal    15 年前

    这是贡献代码的人的生日:

    差异: http://cvs.php.net/viewvc.cgi/php-src/ext/session/session.c?r1=1.80&r2=1.81

    http://www.phpbuilder.com/lists/php3-list/199911/3159.php

    要更改它,最好手动设置头,例如nocache设置:

    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Pragma: no-cache
    

    但你仍然可以这样做:

    session_cache_limiter('nocache')
    header('Expires: Thu, 1 Jan 2000 00:00:00 GMT');
    

    header将用相同的名称替换任何现有的header(默认情况下)。