問:哪些 HTTP 標頭對於 PHP 的有效快取至關重要?
A: 在為網站實作 HTTP 快取時,特定標頭在指導瀏覽器如何管理快取內容方面發揮著至關重要的作用。基本標頭包括:
實作:
設定快取策略:
<code class="php">session_cache_limiter('private_no_expire'); // Allow caching but do not reveal cache expiry time</code>
設定過期時間:
<code class="php">header("Cache-Control: max-age=" . (60 * 60 * 24 * 30)); // Set cache expiration to 30 days</code>
<code class="php">$tsstring = gmdate('D, d M Y H:i:s ', $timestamp) . 'GMT'; $etag = $language . $timestamp; $if_modified_since = isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false; $if_none_match = isset($_SERVER['HTTP_IF_NONE_MATCH']) ? $_SERVER['HTTP_IF_NONE_MATCH'] : false; if ((($if_none_match && $if_none_match == $etag) || (!$if_none_match)) && ($if_modified_since && $if_modified_since == $tsstring)) { header('HTTP/1.1 304 Not Modified'); exit(); } else { header("Last-Modified: $tsstring"); header("ETag: \"{$etag}\""); }</code>
以上是如何透過 PHP 有效利用 HTTP 標頭進行快取?的詳細內容。更多資訊請關注PHP中文網其他相關文章!