How to prevent browser image caching?

2020-03-03 07:05发布

What is the best way to prevent the browser from caching images in PHP?

I've tried the header( method:

header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

But nothings seems to work save for manually clearing the browser's cache.

I have images that are replaced with the same name, such as avatar.png as an updateable avatar for the user, but when it is updated, the browser holds onto an old version.

Even when the original is deleted and a new one is added, the browser still holds onto the old avatar.png.

Any thoughts?

4条回答
叼着烟拽天下
2楼-- · 2020-03-03 07:27

Within the same browsing session, if you use the same IMG src, the browser will often re-use its retained-in-memory copy of an image regardless of caching settings. That seems to be what's happening to you here.

I've summarized some common solutions to the "update an image" problem here.

查看更多
再贱就再见
3楼-- · 2020-03-03 07:35

Just put a random parameter at the end of the image URL. A timestamp can also be used very well for this.

For example in PHP:

"http://domain.com/img.png?t=" . time();

The browser will always load this image new. You should use it with care though, it will make loading times slower.

查看更多
The star\"
4楼-- · 2020-03-03 07:39

As soon as you are inserting your own image there is no need to prevent picture caching each time. You can just use filemtime($imgPath) to check last picture change time.

E.g: 'http://example.com/img.jpg?last_picture_update=' . filemtime($imgPath)

查看更多
闹够了就滚
5楼-- · 2020-03-03 07:39

thank you, this Run for me like this

not run<

echo "&lt;img src='gambarLimas.jpg'><br>"; 

run well

echo "&lt;img src='gambarLimas.jpg?t=".time()."'><br>"; 
查看更多
登录 后发表回答