タイトルはそれを要約します。クラスresult
を含み、クラスgrid
を含まないすべてのdivタグについてHTMLファイルをクエリしようとしています。
<div class="result grid">skip this div</div>
<div class="result">grab this one</div>
ありがとう!
これはそれを行うはずです:
<?php
$doc = new DOMDocument();
$doc->loadHTMLFile('test.html');
$xpath = new DOMXPath($doc);
$nodeList = $xpath->query(
"//div[contains(@class, 'result') and not(contains(@class, 'grid'))]");
foreach ($nodeList as $node) {
echo $node->nodeName . "\n";
}
XPathは//div[contains(concat(' ', @class, ' '), ' result ') and not(contains(concat(' ', @class, ' '), ' grid '))]
になります
XPATH構文は次のようになります...
//div[not(contains(@class, 'grid'))]