PHP解析HTML字符串的方式

前端之家收集整理的这篇文章主要介绍了PHP解析HTML字符串的方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个PHP字符串,其中包含我从RSS源检索的以下HTML.我正在使用简单的馅饼,并且无法找到从< description>中分割出这两个数据集的任何其他方式.如果有人知道在简单的馅饼中选择一个很棒的孩子.

最佳答案
$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;

见:http://simplehtmldom.sourceforge.net/manual.htm

原文链接:https://www.f2er.com/html/426356.html

猜你在找的HTML相关文章