在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函数设置响应头时,需要确保在任何输出之前调用该函数。