gpt4 book ai didi

php - Yii 禁用 http 缓存

转载 作者:搜寻专家 更新时间:2023-10-31 21:35:17 25 4
gpt4 key购买 nike

如何在 Yii 上禁用 http 缓存?浏览器无法更新 View ,直到我手动刷新浏览器。

有没有像cakephp disableCache()之类的?

最佳答案

CakePHP的函数做

$this->header(array(
'Expires' => 'Mon, 26 Jul 1997 05:00:00 GMT',
'Last-Modified' => gmdate("D, d M Y H:i:s") . " GMT",
'Cache-Control' => 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0'
));

所以也许你可以创建一个函数:

header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");

并在需要时调用它。

关于php - Yii 禁用 http 缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21573034/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com