使用 SimplePie 显示 RSS 图像

发布于 2024-10-14 23:28:46 字数 575 浏览 1 评论 0原文

我正在设置一个页面,该页面从多个 RSS 源中获取第一个条目。我遇到了很多格式不同的 RSS 提要。我正在使用 SimplePie 来解析提要。我试图从中获取图像的当前提要如下:

<entry>
<updated>2011-01-28T09:00:00Z</updated>
<title><![CDATA[Information on Title of Product]]></title>
<link href="http://link-to-website"/>
<summary type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<img src="http://image.JPG"/>
<div>Title of Image</div>
</div>
</summary>
</entry>

如何使用 SimplePie 从摘要标签中获取 img 标签,以便我可以在我的网站上显示它?

提前致谢。

I'm setting up a page which grabs the first entry from multiple RSS feeds. I'm running into a lot of RSS feeds that are formated differently. I'm using SimplePie to parse the feeds. The current feed I'm trying to grab the image from is below:

<entry>
<updated>2011-01-28T09:00:00Z</updated>
<title><![CDATA[Information on Title of Product]]></title>
<link href="http://link-to-website"/>
<summary type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<img src="http://image.JPG"/>
<div>Title of Image</div>
</div>
</summary>
</entry>

How can I grab the img tag from within the summary tag with SimplePie so I can display this on my website?

Thanks in advance.

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

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

发布评论

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

评论(1

各空 2024-10-21 23:28:46

您必须使用 SimplePie 获取内容,然后通过 XML 解析器运行它(例如 SimpleXML,获取所需的节点)。例如:

$summary = <<<XML
<div xmlns="http://www.w3.org/1999/xhtml">
    <img src="http://image.JPG"/>
    <div>Title of Image</div>
</div>
XML;

$xml = new SimpleXMLElement($summary);
$imageSrc = (string) $xml->img->attributes()->src;

很长一段时间没有使用 SimpleXML,但它应该是类似的东西。

You will have to grab the content from with SimplePie, and then run it through and XML parser (such as SimpleXML, to get the node you want). For example:

$summary = <<<XML
<div xmlns="http://www.w3.org/1999/xhtml">
    <img src="http://image.JPG"/>
    <div>Title of Image</div>
</div>
XML;

$xml = new SimpleXMLElement($summary);
$imageSrc = (string) $xml->img->attributes()->src;

Didn't use SimpleXML for quite some time, but it should be something like that.

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