📄 nocache.inc
字号:
<?php
//==================================================================
// Expires on any date in the past.
//==================================================================
header ("Expires: Fri, 11 Jul 2000 23:59:00 GMT");
// last modified at the current date and time.
header ("Last-Modified: " . gmdate("D, d M Y H:i:s") ." GMT");
// For HTTP 1.1
header ("Cache-Control: no-store, no-cache, must-revalidate");
header ("Cache-Control: post-check=0, pre-check=0", false);
// For HTTP 1.0
header ("Pragma: no-cache");
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -