如何强制清除浏览器缓存laravel


How to force clean browser cache laravel

我是web开发领域的新手。我只想问一下如何使用PHP强制清理浏览器中的所有缓存。

您能做的最好的事情就是设置一个缓存控制头,但您不能用服务器端语言在客户端上"强制"执行任何操作。

在laravel:

return view('some_template')->header('Cache-Control', 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0');

在普通php中,在输出任何内容之前,您将使用header()函数。

header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0');

PHP在服务器端。您无法控制浏览器。