PHP解析HTML字符串的方式

问题描述 投票:6回答:3

我有一个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';
php html rss simplepie
3个回答
9
投票
$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;

2
投票

0
投票

尝试使用strip_tags:

© www.soinside.com 2019 - 2024. All rights reserved.