在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函数设置响应头时,需要确保在任何输出之前调用该函数。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 怎么使用php递归函数求n的阶乘