使用PHP simpleXml将子项添加到xml

前端之家收集整理的这篇文章主要介绍了使用PHP simpleXml将子项添加到xml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有simpleXml的问题和添加新项目.这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<root>
  <items>               
    <item>abc</item>
    <item>def</item>
    <item>ghi</item>
</items>
</root>

我使用这个PHP代码

$xml = simplexml_load_file("myxml.xml");
$sxe = new SimpleXMLElement($xml->asXML());
$newItem = $sxe->addChild("items");
$newItem->addChild("item",$newValue);
$sxe->asXML("myxml.xml");

这是结果:

<?xml version="1.0" encoding="utf-8"?>
    <root>
      <items>               
        <item>abc</item>
        <item>def</item>
        <item>ghi</item>
      </items>
      <items>
        <item>jkl</item>
      </items>
    </root>

这会创建新项目节点,但我想将项目添加到相同的现有项目节点.

那么,你不应该创建新的项目节点:
$xml = simplexml_load_file("myxml.xml");
$sxe = new SimpleXMLElement($xml->asXML());
$itemsNode = $sxe->items[0];
$itemsNode->addChild("item",$newValue);
$sxe->asXML("myxml.xml");
原文链接:https://www.f2er.com/php/130418.html

猜你在找的PHP相关文章