Xpath çeviri sonucunu yazmak nasıl

0 Cevap php

Ben foreachta düğüm dönüşüm yaptık, nasıl bütün değiştirilmesi düğümleri ile tamamlandı $ İçeriğim'e bir kopyasını alabilirim?

echo $ xPath çalışmıyor

$myContent ="<h1>This word should not be replaced: test</h1>. 
  But this one should be replaced: Test";

@$dom = new DOMDocument;
@$dom->loadHTML($myContent);
$xPath = new DOMXPath(@$dom);
foreach($xPath->query("//text()[contains(.,'test') and not(ancestor::h1)]") as $node)
{
    $node->textContent = "<b>".trim($match[1])."</b>";   
}

0 Cevap