php常用HEADER头记录

<?php    
    
 //设置此页面的过期时间(用格林威治时间表示),只要是已经过去的日期即可。    
 header("Expires: Mon, 26 Jul 1970 05:00:00 GMT");      
    
 //设置此页面的最后更新日期(用格林威治时间表示)为当天,可以强制浏览器获取最新资料     
 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");      
    
 //告诉客户端浏览器不使用缓存,HTTP 1.1 协议     
header("Cache-Control: no-cache, must-revalidate");      
   
//告诉客户端浏览器不使用缓存,兼容HTTP 1.0 协议     
header("Pragma: no-cache");    
   
?>   

有些技术比如:AJAX 默认使用缓存。 所以,为了看到效果。 直接得禁止使用缓存。

 

Header("Content-Type:text/html;charset=utf-8");

 

header("http/1.1 403 Forbidden");

 

header("Location:http://www.baidu.com");    header("Location:../index.php");

 

header('HTTP/1.1 404 Not Found'); 
header("status: 404 Not Found"); 

 

 

header('HTTP/1.1 401 Unauthorized'); 
header('status: 401 Unauthorized'); 

 

 

ini_set('memory_limit','-1');
ini_set("auto_detect_line_endings", true);
set_time_limit(0);

 

posted @ 2013-06-06 23:41  群叔  阅读(288)  评论(0编辑  收藏  举报