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.
我想将板球记分卡加载到我的网页中。有什么方法可以让 curl 在固定时间后定期重新加载网站记分卡。
您可以使用javascript以下方式重新加载页面:
javascript
<script> setTimeout(function() { location.reload(); }, 10000); // 10000 milliseconds = 10 seconds </script>
您可以在 php 中发送刷新标头
header( "refresh:5;url=wherever.php");
这将导致站点每 5 秒将 url 刷新到whatever.php。