通过 PHP 在 XML 文件中添加新节点
Posted
技术标签:
【中文标题】通过 PHP 在 XML 文件中添加新节点【英文标题】:adding a new node in XML file via PHP 【发布时间】:2013-02-18 12:48:36 【问题描述】:我只是想问一个问题..如何使用 php 在 xml 中插入新节点。我的 XML 文件(questions.xml)在下面给出
<?xml version="1.0" encoding="UTF-8"?>
<Quiz>
<topic text="Preparation for Exam">
<subtopic text="Science" />
<subtopic text="Maths" />
<subtopic text="english" />
</topic>
</Quiz>
我想添加一个带有“text”属性的新“subtopic”,即“geography”。我怎样才能使用 PHP 做到这一点?不过提前谢谢。 我的代码是
<?php
$xmldoc = new DOMDocument();
$xmldoc->load('questions.xml');
$root = $xmldoc->firstChild;
$newElement = $xmldoc->createElement('subtopic');
$root->appendChild($newElement);
// $newText = $xmldoc->createTextNode('geology'); // $newElement->appendChild($newText);
$xmldoc->save('questions.xml');
?>
【问题讨论】:
是的,那是我 .. 没有令人满意的答复。 . 因为你没想到会有一个解释,而是一段你可以使用的代码。没有理由再问同样的问题。 有一个原因..看到..我再次发布后收到了 2 个有效回复...所以有一个再次发布的原因。 【参考方案1】:最好且安全的方法是将您的 XML 文档加载到 PHP DOMDocument 对象中,然后转到您想要的节点,添加一个子节点,最后将新版本的 XML 保存到一个文件中。
查看文档:DOMDocument
代码示例:
// open and load a XML file
$dom = new DomDocument();
$dom->load('your_file.xml');
// Apply some modification
$specificNode = $dom->getElementsByTagName('node_to_catch');
$newSubTopic = $xmldoc->createElement('subtopic');
$newSubTopicText = $xmldoc->createTextNode('geography');
$newSubTopic->appendChild($newSubTopicText);
$specificNode->appendChild($newSubTopic);
// Save the new version of the file
$dom->save('your_file_v2.xml');
【讨论】:
好的......我已经编辑了文件......我的编码在那里......但我的代码在最后添加了新的子主题......并且它没有添加文本属性:( 你必须创建一个新元素$newSubTopic = $xmldoc->createElement('subtopic');
,然后创建一个新的文本节点$subTopicContent = $xmldoc->createTextNode('geology');
,最后将文本节点附加到新的主题元素中,然后将新的主题元素附加到你想要的节点。
啊所以...它有效..谢谢伙计..我真的很感谢你的帮助
你在哪里定义了xmldoc
?【参考方案2】:
你可以使用PHP的Simple XML.你必须读取文件内容,用Simple XML添加节点并写回内容。
【讨论】:
是的……你能帮我解决这个问题吗……只是一个提示……我知道如何使用 simplexml 读取内容,但不知道如何使用 simple xml 添加新节点..【参考方案3】:我会为此使用SimpleXML。它看起来像这样:
// Open and parse the XML file
$xml = simplexml_load_file("questions.xml");
// Create a child in the first topic node
$child = $xml->topic[0]->addChild("subtopic");
// Add the text attribute
$child->addAttribute("text", "geography");
您可以使用 echo 显示新的 XML 代码,也可以将其存储在文件中。
// Display the new XML code
echo $xml->asXML();
// Store new XML code in questions.xml
$xml->asXML("questions.xml");
【讨论】:
谢谢伙计.. 现在这是一个令人满意且非常好的答复。 .我感谢你的努力以上是关于通过 PHP 在 XML 文件中添加新节点的主要内容,如果未能解决你的问题,请参考以下文章
使用 LINQ - C# 在 xml 文件中的特定节点下方添加新元素