6

質問したかっただけです.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>

「テキスト」属性を持つ新しい「サブトピック」、つまり「地理」を追加したいと思います。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');

?>

4

3 に答える 3

10

これには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");

新しいXMLコードをechoで表示するか、ファイルに保存することができます。

// Display the new XML code
echo $xml->asXML();
// Store new XML code in questions.xml
$xml->asXML("questions.xml");
于 2013-03-04T12:32:17.523 に答える
5

最良かつ安全な方法は、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');
于 2013-03-04T12:22:21.187 に答える
-1

PHPのSimpleXMLを使用できます。ファイルの内容を読み取り、Simple XMLでノードを追加し、内容を書き戻す必要があります。

于 2013-03-04T12:23:01.033 に答える