プレーンテキストを内部から取得しようとしています<font size="3" color="blue">
...フォントタグを取得しませんが、「フォント」を実行すると機能します3が、サイトにはフォントタグがたくさんあるので、検索をもう少し具体的にします。タグに複数の属性を含めることは可能ですか?
<?php
include('simple_html_dom.php');
$html = new simple_html_dom();
$html = file_get_html('http://cwheel.domain.com/');
##### <font size="3" color="blue">Certified Genuine</font>
$element = $html->find("font[size=3][color=blue]", 0);
echo $element-> plaintext . '<br>';
$html->clear();
?>