php:browser cache

網站上的一些js,css,image檔,如果設置browser cache,performance會更好。

在php設置browser cache很簡單,大概如下:

$seconds_to_cache = 60*60*24;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("Expires: $ts");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
header("Cache-Control: public,max-age=$seconds_to_cache");