首页 > 语言 > PHP > 正文

PHP不缓存数据头

2024-09-04 11:47:42
字体:
来源:转载
供稿:网友
PHP不缓存数据头
  1. function nocache_headers() {   
  2.     // why are these @-silenced when other header calls aren't?   
  3.     @header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' );   
  4.     @header( 'Last-Modified: ' . gmdate'D, d M Y H:i:s' ) . ' GMT' );   
  5.     @header( 'Cache-Control: no-cache, must-revalidate, max-age=0' );   
  6.     @header( 'Pragma: no-cache' );   

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表