PHP解析HTML字符串的方法
我有一个 php 字符串,其中包含我从 RSS 提要检索的以下 HTML。我使用的是简单的饼图,无法找到任何其他方式来分割从
获得的这两个数据集。如果有人知道一种简单的馅饼选择孩子的方法,那就太好了。
<div style="example"><div style="example"><img title="example" alt="example" src="example.jpg"/></div><div style="example">EXAMPLE TEXT</div></div>
to:
$image = '<img title="example" alt="example" src="example.jpg">';
$description = 'EXAMPLE TEXT';
I have a php string that contains the below HTML I am retrieving from an RSS feed. I am using simple pie and cant find any other way of splitting these two datasets it gets from <description>
. If anyone knows of a way in simple pie to select children that would be great.
<div style="example"><div style="example"><img title="example" alt="example" src="example.jpg"/></div><div style="example">EXAMPLE TEXT</div></div>
to:
$image = '<img title="example" alt="example" src="example.jpg">';
$description = 'EXAMPLE TEXT';
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅此处:http://simplehtmldom.sourceforge.net/manual.htm
See Here: http://simplehtmldom.sourceforge.net/manual.htm
尝试简单的 HTML Dom 解析器
Try Simple HTML Dom Parser
尝试使用 strip_tags:
try using strip_tags: