我正在尝试从内部抓取纯文本<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();
?>