PHP - SimpleXML - AddChild与另一个SimpleXMLElement

时间:2011-01-24 05:11:02

标签: php simplexml

我正在尝试构建一个相当复杂的XML文档。

我有一堆重复的XML文档部分。我以为我会使用多个字符串模板作为节的基础文档,并使用simplexml_load_string创建XML元素的实例。

所以我有一个SimpleXMLElement实例作为基础文档

  

$ root =   simplexml_load_string($ TEMPLATE_ROOT);

然后我遍历我的数据库中的一些项目,创建新的SimpleXMLElement,如下所示:

  

for(bla bla bla):

     

$ item = simplexml_load_string($ template_item);      //用物品做东西      //尝试将项目添加到根文档中。
    //被困在这里..不能做$ root-> items-> addChild($ item)

     

ENDFOR;

我无法调用addChild,因为它只需要一个标记名称和值..你不能addChild另一个SimpleXMLElement。

我在这里遗漏了什么吗?看起来真的很蠢,addChild不能将SimpleXMLELement作为参数。

还有其他办法吗? (除了使用不同的xml库)

3 个答案:

答案 0 :(得分:56)

据我所知,你不能用SimpleXML来做,因为addChild没有制作元素的深层副本(通过调用{{1}可以很容易地克服指定标记名称所必需的}})。

一种解决方案是使用DOM代替:

使用此功能:

SimpleXMLElement::getName()

我们有

function sxml_append(SimpleXMLElement $to, SimpleXMLElement $from) {
    $toDom = dom_import_simplexml($to);
    $fromDom = dom_import_simplexml($from);
    $toDom->appendChild($toDom->ownerDocument->importNode($fromDom, true));
}

输出

<?php
header("Content-type: text/plain");
$sxml = simplexml_load_string("<root></root>");

$n1 = simplexml_load_string("<child>one</child>");
$n2 = simplexml_load_string("<child><k>two</k></child>");

sxml_append($sxml, $n1);
sxml_append($sxml, $n2);

echo $sxml->asXML();

另请参阅一些使用递归函数和<?xml version="1.0"?> <root><child>one</child><child><k>two</k></child></root> 的用户注释,例如: this one

答案 1 :(得分:15)

您可以使用此功能,该功能基于创建具有源的属性的子项:

function xml_adopt($root, $new) {
    $node = $root->addChild($new->getName(), (string) $new);
    foreach($new->attributes() as $attr => $value) {
        $node->addAttribute($attr, $value);
    }
    foreach($new->children() as $ch) {
        xml_adopt($node, $ch);
    }
}

$xml = new SimpleXMLElement("<root/>");
$child = new SimpleXMLElement("<content><p a=\"aaaaaaa\">a paragraph</p><p>another <br/>p</p></content>");

xml_adopt($xml, $child);
echo $xml->asXML()."\n";

这将产生:

<?xml version="1.0"?>
<root><content><p a="aaaaaaa">a paragraph</p><p>another p<br/></p></content></root>

答案 2 :(得分:8)

xml_adopt()示例不保留命名空间节点 我的编辑遭到拒绝,因为它改变了很多?垃圾邮件?。

这是一个保留名称空间的xml_adopt()版本。

function xml_adopt($root, $new, $namespace = null) {
    // first add the new node
    // NOTE: addChild does NOT escape "&" ampersands in (string)$new !!!
    //  replace them or use htmlspecialchars(). see addchild docs comments.
    $node = $root->addChild($new->getName(), (string) $new, $namespace);
    // add any attributes for the new node
    foreach($new->attributes() as $attr => $value) {
        $node->addAttribute($attr, $value);
    }
    // get all namespaces, include a blank one
    $namespaces = array_merge(array(null), $new->getNameSpaces(true));
    // add any child nodes, including optional namespace
    foreach($namespaces as $space) {
      foreach ($new->children($space) as $child) {
        xml_adopt($node, $child, $space);
      }
    }
}

(编辑:添加示例)

$xml = new SimpleXMLElement(
  '<?xml version="1.0" encoding="utf-8"?>
  <rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
  <channel></channel></rss>');

$item = new SimpleXMLElement(
  '<item xmlns:media="http://search.yahoo.com/mrss/">
    <title>Slide Title</title>
    <description>Some description</description>
    <link>http://example.com/img/image.jpg</link>
    <guid isPermaLink="false">A1234</guid>
    <media:content url="http://example.com/img/image.jpg" medium="image" duration="15">
    </media:content>
  </item>');

$channel = $xml->channel;
xml_adopt($channel, $item);

// output:
// Note that the namespace is (correctly) only preserved on the root element
'<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
  <channel>
    <item>
      <title>Slide Title</title>
      <description>Some description</description>
      <link>http://example.com/img/image.jpg</link>
      <guid isPermaLink="false">A1234</guid>
      <media:content url="http://example.com/img/image.jpg" medium="image" duration="15">
        </media:content>
    </item>
  </channel>
</rss>'