XMLにノードを追加する方法
XMLの構造は以下の通りです
<注>
phpは以下の通りです
$note = simplexml_load_file("a.xml");
$note->appendChild(new DOMElement("time","aaa"));
$note = simplexml_load_file("a.xml");<br /> $note->addChild("time","aaa");<br /> file_put_contents('a.xml', $note->asXML());