我们说我有一个页面abc.php
,其中包含以下PHP代码。
<?php
$current_time = date("Y-m-d H:i:s",time());
$curtim=strtotime($current_time);
echo $current_time.' '.$curtim;
?>
此页面只显示当前时间,如2015-07-27 14:18:18。当我正在处理“没有伤害态度”时,我得到了正确的时间。
当我关闭标签并在一段时间后使用快捷键-Ctlr + Shift + T重新打开它时,我仍然得到2015-07-27 14:18:18作为当前时间。 我猜这个短密钥没有重新加载页面。
有没有办法在这种情况发生时正确获取当前时间?
答案 0 :(得分:3)
如果问题是被缓存的页面,则应修复一些标题。
请参阅此处Making sure a web page is not cached, across all browsers
header("Cache-Control: no-cache, no-store, must-revalidate"); // HTTP 1.1.
header("Pragma: no-cache"); // HTTP 1.0.
header("Expires: 0"); // Proxies.