我们希望使用 Simple PHP DOM 查看和修改特定元素,
<?php
include('../../../../dom/simple_html_dom.php');
$html = new simple_html_dom();
$html->load_file('http://www.google.com');
foreach ($tags as $tag)
{
//something like that match with $string, if value found then the particular element edited by the <u>$string</u>.
if(stristr($tag->innertext,$string)) {}
}
echo $html ;
?>
我们想要以数组的形式获取所有 HTML 元素。我们必须检查每个元素,如果其中一个与我们的数据匹配,那么我们会调整该特定元素。