在PHP中,可以使用header函數來設置響應頭中的Cache-control參數。Cache-control參數用于控制瀏覽器緩存的行為。以下是一些常用的Cache-control參數及其使用方法:
header("Cache-control: public");
header("Cache-control: private");
header("Cache-control: no-cache");
header("Cache-control: no-store");
header("Cache-control: must-revalidate");
header("Cache-control: max-age=3600"); // 緩存1小時
header("Cache-control: s-maxage=3600"); // 緩存1小時
header("Cache-control: no-transform");
可以根據實際需求選擇合適的Cache-control參數來控制瀏覽器緩存的行為。在使用header函數設置響應頭時,需要確保在任何輸出之前調用該函數。