检查 RSS feed 是否有更新?

发布于 2024-11-02 06:03:40 字数 131 浏览 1 评论 0 原文

我的网站上有 RSS 源。如何检查 RSS 文件是否已更改然后更新它们。我通过 PHP 手动执行此操作。

基本上我的网站上有 12 条新闻报道,但它们会根据 RSS 提要而变化。我可以每隔一段时间点击“刷新”,但是有更聪明的方法吗?

I am getting an RSS feed on my site. How can I check if the RSS files have changed and then update them. I'm doing this manually through PHP.

basically i have 12 news stories on my site, but they change based on the RSS feed. I can click "refresh" every once in a while, but is there a smarter way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流年已逝 2024-11-09 06:03:40

我有类似的问题,但每 6 小时创建一次文件。我已将脚本放入 cron 作业中: http://www.cyberciti.biz/faq/how-do-i-add-jobs-to-cron-under-linux-or-unix-oses/

就我而言cron 看起来像这样:
0 */6 * * * php /path/to/my/script.php

I had similar problem, but with creating files every 6 hours. I have put script into the cron job: http://www.cyberciti.biz/faq/how-do-i-add-jobs-to-cron-under-linux-or-unix-oses/

In my case cron looks like this:
0 */6 * * * php /path/to/my/script.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文