我正在尝试写入我的 XML 文件,但不确定语法!我可以打开 XML 文件。到目前为止,这是我的代码:
<?php
$doc = new DOMDocument();
$doc->load("xml/latestContent.xml");
$latestpic = $doc->getElementsByTagName("latestpic");
?>
我使用了以前的方法,但这是使用 SIMPLE XML,我不再想使用它:
<?php
$xml = simplexml_load_file("xml/latestContent.xml");
$sxe = new SimpleXMLElement($xml->asXML());
$latestpic = $sxe->addChild("latestpic");
$latestpic->addChild("item", "Latest Pic");
$latestpic->addChild("content", $latestPic);
$latestvid = $sxe->addChild("latestvideo");
$latestvid->addChild("item", "Latest Video");
$latestvid->addChild("content", $videoData);
$latestfact = $sxe->addChild("latestfact");
$latestfact->addChild("item", "Latest Fact");
$latestfact->addChild("content", $factData);
$sxe->asXML("xml/latestContent.xml");
?>
如何让我的 DOM 做与 SIMPLE 方法相同的事情?