我测试了我在this web site上找到的脚本:
function setExpires($expires) {
header(
'Expires: '.gmdate('D, d M Y H:i:s', time()+$expires).'GMT');
}
setExpires(10);
echo ( 'This page will self destruct in 10 seconds<br />' );
echo ( 'The GMT is now '.gmdate('H:i:s').'<br />' );
echo ( '<a href="'.$_SERVER['PHP_SELF'].'">View Again</a><br />' );
当我刷新页面时,时间每秒更新一次而不是每10秒更新一次。
“如果我们关注此链接,我们会发现时间每十秒更新一次”
答案 0 :(得分:1)
好的,我希望你没有犯这个错字,但无论如何我都会指出你:
header('Expires: '.gmdate('D, d M Y H:i:s', time()+$expires).'GMT');
seconds
字段后面应该有空格:
header('Expires: '.gmdate('D, d M Y H:i:s ', time()+$expires).'GMT');
// ^-- add space here