在关闭节点之前添加XML节点

时间:2013-10-10 07:25:08

标签: javascript php xml

我需要在结束节点之前添加我的XML树,我似乎无法找到解决方案。红色块下面的示例只需要移动到</quiz>节点之上。

enter image description here

这是我在PHP中完成的XML代码,它在红色块中创建了上面的XML部分。

$xml = simplexml_load_file('quiz.xml');


$questionLoad = $xml->addChild('question');
$textQue = $questionLoad->addChild('text', $que);
$optionNode = $questionLoad->addChild('option');
$ans1 = $optionNode->addChild('text', $answer1);
$score = $optionNode->addChild('score', $score1);
$explain = $optionNode->addChild('explanation');
$expl1 = $explain->addChild('text', $explanation1);

$xml->asXML('quiz.xml');

2 个答案:

答案 0 :(得分:0)

在上面的代码中,您正在加载一个xml并简单地添加一个节点,该节点将始终添加到文件的末尾。

尝试使用append而不是add for ex:

$doc = new DOMDocument();
$doc->loadXML("<root/>");
$f = $doc->createDocumentFragment();
$f->appendXML("<foo>text</foo><bar>text2</bar>");
$doc->documentElement->appendChild($f);
echo $doc->saveXML();

仅供参考。

答案 1 :(得分:0)

对于具有

内容的给定输入quiz.xml
<?xml version="1.0"?>
<quizzes>
    <quiz>
        <question>
            <text>Choose the correct word for hot + est</text>
            <option>
                <text>hottest</text>
                <score>5</score>
                <explanation>
                    <text>Correct!</text>
                </explanation>
            </option>
            <option>
                <text>hotestt</text>
                <score>0</score>
                <explanation>
                    <text>Incorrect!</text>
                </explanation>
            </option>
            <option>
                <text>hotest</text>
                <score>0</score>
                <explanation>
                    <text>Incorrect!</text>
                </explanation>
            </option>
        </question>
    </quiz>
</quizzes>

以下PHP改编自您的代码

<?php

$que = 'fsa';
$answer1 = 'cs';
$score1 = 5;
$explanation1 = 'hgfhfg';

$xml = simplexml_load_file('quiz.xml');

$questionLoad = $xml->children()[0]->addChild('question');
$textQue = $questionLoad->addChild('text', $que);
$optionNode = $questionLoad->addChild('option');
$ans1 = $optionNode->addChild('text', $answer1);
$score = $optionNode->addChild('score', $score1);
$explain = $optionNode->addChild('explanation');
$expl1 = $explain->addChild('text', $explanation1);

$xml->asXML('quiz.xml');

生成

的想要结果quiz.xml
<?xml version="1.0"?>
<quizzes>
    <quiz>
        <question>
            <text>Choose the correct word for hot + est</text>
            <option>
                <text>hottest</text>
                <score>5</score>
                <explanation>
                    <text>Correct!</text>
                </explanation>
            </option>
            <option>
                <text>hotestt</text>
                <score>0</score>
                <explanation>
                    <text>Incorrect!</text>
                </explanation>
            </option>
            <option>
                <text>hotest</text>
                <score>0</score>
                <explanation>
                    <text>Incorrect!</text>
                </explanation>
            </option>
        </question>
    <question><text>fsa</text><option><text>cs</text><score>5</score><explanation><text>hgfhfg</text></explanation></option></question></quiz>
</quizzes>