我有一个php字符串,其中包含我从RSS feed中检索的以下HTML。我使用的是简单的饼图,找不到从<description>
获得的拆分这两个数据集的任何其他方法。如果有人知道用简单的方法选择孩子的方法,那就太好了。
<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';
$received_str = 'Your received html';
$html = str_get_html($received_str);
//Image tag
$img_tag = $html->find("img", 0)->outertext;
//Example Text
$example_text = $html->find('div[style=example]', 0)->last_child()->innertext;
尝试使用strip_tags: