シンプルな 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 要素を配列で取得したいと考えています。各要素をチェックする必要があり、データと一致するものがある場合は、その特定の要素をモデレートします。