web-dev-qa-db-ja.com

PHP-SimpleXML-別のSimpleXMLElementを持つAddChild

かなり複雑なXMLドキュメントを作成しようとしています。

XML文書のセクションが繰り返されています。セクションのベースドキュメントとして複数の文字列テンプレートを使用し、simplexml_load_stringを使用してXML要素のインスタンスを作成すると思いました。

基本ドキュメントとしてSimpleXMLElementのインスタンスが1つあります

$ root = simplexml_load_string($ template_root);

次に、データベース内のいくつかのアイテムをループして、次のような新しいSimpleXMLElementを作成します。

(bla bla bla)の場合:

$ item = simplexml_load_string($ template_item); //アイテムを使用して//ルートドキュメントにアイテムを追加しようとします。
//ここから先に進まない.. $ root-> items-> addChild($ item)を実行できない

endfor;

タグ名と値が必要なだけなので、addChildを呼び出すことはできません。別のSimpleXMLElementをaddChildすることはできません。

ここで何か不足していますか? addChildがSimpleXMLELementをパラメーターとして受け取ることができないのは本当におかしいようです。

これを行う他の方法はありますか? (別のxml libの使用は別として)

28
Ben

私が知る限り、addChildは要素の詳細なコピーを作成しないため、SimpleXMLでそれを行うことはできません(タグ名を指定する必要があるため、SimpleXMLElement::getName())。

1つの解決策は、代わりにDOMを使用することです。

この機能で:

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>

再帰関数を使用するユーザーコメントやaddChildもご覧ください。 これ

56
Artefacto

ソースからの属性を持つ子の作成に基づくこの関数を使用できます。

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>
15
Carlos C Soto

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>'
8
GDmac