[PHP] Web Page No Cache
3 月.18, 2005 in PHP
設計動態網頁一定需要避免被瀏覽器 Cache 網頁。在 PHP 程式當中加入此一函數並且在適當位置呼叫執行即可。
function send_no_cache_header () {
header ( “Expires: Mon, 26 Jul 1997 05:00:00 GMT” );
header ( “Last-Modified: ” . gmdate ( “D, d M Y H:i:s” ) . ” GMT” );
header ( “Cache-Control: no-store, no-cache, must-revalidate” );
header ( “Cache-Control: post-check=0, pre-check=0”, false );
header ( “Pragma: no-cache” );
}
Tags: PHP