我可以在 PHP 中使用 filemtime('style.css') 强制浏览器重新加载 css 吗?

chr*_*ala 1 css php caching browser-cache

我可以在 PHP 中使用 filemtime 强制浏览器重新加载 css 吗?

 $mtime = filemtime('style.css');
 echo "\style.css?mod=" . $mtime;
Run Code Online (Sandbox Code Playgroud)

filemtime 是不是太慢了?

Hal*_*yon 5

filemtime一般情况下应该没问题。

您还可以查看电子标签,让 Apache 为您完成工作。