我已经决定使用SimpleXMLElements无法做到这一点。我一直在阅读PHP DOMDocument手册,我想我可以用迭代来做,但这似乎效率低下。有没有更好的方式对我没有发生?
Psuedocode-ish迭代解决方案:
// two DOMDocuments with same root element
$parent = new ...
$otherParent = new ...
$children = $parent->getElementByTagName('child');
foreach ($children as $child) {
$otherParent->appendChild($child);
}
为清楚起见,我有两个XML文档,看起来像这样:
<parent>
<child>
<childOfChild>
{etc, more levels of nested XML trees possible}
</childOfChild>
</child>
<child>
<childOfChild>
{etc, more levels possible}
</childOfChild>
</child>
</parent>
我希望输出如下:
<parent>
{all children of both original XML docs, order unimportant, that preserves any nested XML trees the children may have}
<parent>
答案 0 :(得分:2)
如果我精确严格地回答您的问题,那么您可以在两个文件之间识别的唯一公共节点将是根节点,因此解决方案将是:
<doc1:parent>
<doc1:children>...</>
<doc2:children>...</>
</doc1:parent>
你写的订单并不重要,所以你可以在这里看到,doc2来自doc1。包含上述示例XML表单的两个SimpleXML元素$xml1
和$xml2
的示例代码:
$doc1 = dom_import_simplexml($xml1)->ownerDocument;
foreach (dom_import_simplexml($xml2)->childNodes as $child) {
$child = $doc1->importNode($child, TRUE);
echo $doc1->saveXML($child), "\n";
$doc1->documentElement->appendChild($child);
}
现在$doc1
包含此XML表示的文档:
<?xml version="1.0"?>
<parent>
<child>
<childOfChild>
{etc, more levels of nested XML trees possible}
</childOfChild>
</child>
<child>
<childOfChild>
{etc, more levels possible}
</childOfChild>
</child>
<child>
<childOfChild>
{etc, more levels of nested XML trees possible}
</childOfChild>
</child>
<child>
<childOfChild>
{etc, more levels possible}
</childOfChild>
</child>
</parent>
正如您所看到的,两个文档的树都被保留,只有您描述为相同的节点是根节点(实际上也是两个节点),所以它不会从第二份文件,但只是它的孩子。