有人知道如何在PHP中仅提取具有特定类的div标签吗?
<div class="abc">
</div>
<div class="def">
</div>
<div class="xyz">
</div>
我只需要class =“abc”。 我该如何实现呢?
答案 0 :(得分:1)
你想要的是:XPath
<?php
$html = new DOMDocument();
@$html->loadHtmlFile('thepage.html');
$xpath = new DOMXPath( $html );
$nodelist = $xpath->query( "//*[contains(@class, 'abc')]" );
foreach ($nodelist as $n){
echo $n->nodeValue."\n";
}
?>
<强> [更新] 强>
添加了新的xpath查询。 尝试一下。