码迷,mamicode.com
首页 > Web开发 > 详细

http协议的Last-Modified

时间:2015-06-07 12:21:42      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

$modified_time = $_SERVER[‘HTTP_IF_MODIFIED_SINCE‘];
if (strtotime($modified_time) + 3600 > time()) {
    header("HTTP/1.1 304");
    exit(1);
}
header(‘Last-Modified:‘.gmdate("D, d M Y H:i:s")."GMT");
echo time();

 

http协议的Last-Modified

标签:

原文地址:http://www.cnblogs.com/gide/p/4558162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!