如何保存 RSS 提要?

发布于 2024-10-31 07:18:05 字数 90 浏览 0 评论 0原文

我是编程新手,最近为我的应用程序制作了 RSS 提要。现在任何人都可以告诉我如何从外部 rss feeds url 将 rss feeds 保存到我的本地盒子。 谢谢

I am a newbie to programming and recently made a rss feeds for my app. Now can anyone gimme a idea bout how I can save rss feeds to my local box from an external rss feeds url.
Thanks

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

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

发布评论

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

评论(2

断念 2024-11-07 07:18:05

假设您想读取内容然后保存到本地文件,您可以执行以下操作:

$feedurl = "http://someurl/feed/";
$feedme = file_get_contents($feedurl);
if($feedme):
  $fh = fopen('path/to/newfeed.xml', 'w+'); //create new file if not exists
  fwrite($fh, $feedme) or die("Failed to write contents to new file"); //write contents to new XML file
  fclose($fh) or die("failed to close stream resource"); //close resource stream
else:
  die("Failed to read contents of feed at $feedurl");
endif;

这是一个非常简单的示例,可以帮助您入门。

Assuming you wanted to read the contents and then save to a local file, you could do the following:

$feedurl = "http://someurl/feed/";
$feedme = file_get_contents($feedurl);
if($feedme):
  $fh = fopen('path/to/newfeed.xml', 'w+'); //create new file if not exists
  fwrite($fh, $feedme) or die("Failed to write contents to new file"); //write contents to new XML file
  fclose($fh) or die("failed to close stream resource"); //close resource stream
else:
  die("Failed to read contents of feed at $feedurl");
endif;

That is a REALLY simple example to get you started.

桃酥萝莉 2024-11-07 07:18:05

我建议使用 cURL 检索数据和任何 xml 解析器进行分析。或者只是使用谷歌;-) -> 使用-php-curl-to-读取 rss-feed-xml

I would suggest to use cURL to retrieve the data and any xml-parser to analyze. Or just use google ;-) -> using-php-curl-to-read-rss-feed-xml

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