Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个将重新加载的代码:thing1.gif,thing2.gif...每次用户刷新当前页面时。现在gifs页面刷新时停留在最后一帧,但我需要它们重新开始。
thing1.gif
thing2.gif
gifs
将 a 添加uniqid()到您的 gif 图像。像这样的东西
uniqid()
<?php echo "<img src=thing1.gif?".uniqid();
这会强制重新加载您的图像。