使用 SimplePie 显示 RSS 图像
我正在设置一个页面,该页面从多个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 SimplePie 获取内容,然后通过 XML 解析器运行它(例如 SimpleXML,获取所需的节点)。例如:
很长一段时间没有使用 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:
Didn't use SimpleXML for quite some time, but it should be something like that.