这个问题使用 PHP,但问题和算法对许多其他Libxml2 和 W3C DOM实现都有效。
核心问题:没有$node->replaceThisBy($otherNode)
. 只有“替换文本”(使用nodeValue
属性)和replaceChild()
方法——不明显也不简单易用。
在下面的代码中,只有第二个循环有效,但我需要将节点从一个 DOM 树(由克隆模拟)复制到另一个。
$doc = new DOMDocument('1.0', 'UTF-8');
$doc->load($fileXML);
$xp = new DOMXpath($doc);
$lst = $xp->query("//td");
$z = clone $lst->item(2); // a big and complex node
// needs clone to freeze the node content (before change it also).
// does NOT work:
foreach ($lst as $node)
$node = $z; // no error messages!
//error: $node->parentNode->replaceChild($z,$node);
// This works though:
foreach ($lst as $node)
$node->nodeValue = $z->nodeValue;
类似的问题: