如何使用 SimpleXML 从节点解析图像?
我有一个在描述节点中包含图像的提要。如何只解析图像 URL 和描述文本,中间不换行?
<description><img src='http://example.com/100915gignac-clement_g_70x70.jpg'></img><br />(Source: Example.com) Québec annonce qu'une autorisation ministérielle sera nécessaire pour une prise de participation de plus de 30&#160;% de la nouvelle société fusionnée Investissement Québec dans une entreprise.</description>
I have a feed with images in the description node. How can I parse out just the image URL and just the description text with no line break in between?
<description><img src='http://example.com/100915gignac-clement_g_70x70.jpg'></img><br />(Source: Example.com) Québec annonce qu'une autorisation ministérielle sera nécessaire pour une prise de participation de plus de 30 % de la nouvelle société fusionnée Investissement Québec dans une entreprise.</description>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将描述节点的内容传递给另一个 SimpleXmlElement。
由于某种原因,SimpleXML 显然是自行对实体进行 html_decodes。
Pass the content of the decription node to another SimpleXmlElement.
For some reason, SimpleXML apparently html_decodes the entities by itself.