当前位置:首页 > PHP教程 > php函数 > 列表

PHP不缓存数据头

发布:smiling 来源: PHP粉丝网  添加日期:2013-11-11 22:14:58 浏览: 评论:0 
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' );   

Tags: PHP缓存函数 PHP缓存

分享到: