web-dev-qa-db-ja.com

PHP xpathはクラスを含み、クラスを含まない

タイトルはそれを要約します。クラスresultを含み、クラスgridを含まないすべてのdivタグについてHTMLファイルをクエリしようとしています。

<div class="result grid">skip this div</div>
<div class="result">grab this one</div>

ありがとう!

21
Rob

これはそれを行うはずです:

<?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";
}
40
Sean Bright

XPathは//div[contains(concat(' ', @class, ' '), ' result ') and not(contains(concat(' ', @class, ' '), ' grid '))]になります

11
crush

XPATH構文は次のようになります...

//div[not(contains(@class, 'grid'))]
7
wlvrn