我想使用 simplehtmldom 类从网页中提取所有文本链接。但我不想要图片链接。
<?
foreach($html->find('a[href]') as $element)
echo $element->href . '<br>';
?>
上面的代码显示了所有包含 href 属性的锚链接。
<a href="/contact">contact</a>
<a href="/about">about</a>
<a herf="/home"><img src="logo.png" /><a>
我只想要 /contact 和 /about 而不是 /home,因为它包含图像而不是文本