我需要在红色块中插入数据,<title> DATA HERE </title>
并
<description>
<text> DATA HERE</text>
</description>
使用简单的 XML 在其中插入数据。以下是 XML 树的示例 -
下面是我从创建 XML 标记和数据开始的 PHP 代码,<question>
但我不知道如何执行上述操作。
$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('test.xml');