-2

有谁知道如何在 PHP 中只提取具有特定类的 div 标签?

<div class="abc">
</div>
<div class="def">
</div>
<div class="xyz">
</div>

我只需要带有 class="abc" 的 div。我该如何实施?

4

1 回答 1

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 查询。试试看。

于 2012-10-31T10:14:04.950 回答