0

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

在此处输入图像描述

这是我在 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');
4

2 回答 2

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();

仅供参考。

于 2013-10-10T07:27:01.803 回答
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>
于 2013-10-10T07:48:35.170 回答