<html>
<body>
$note=<<<XML
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Do not forget the meeting!</body>
</note>
XML;
$xml=new SimpleXMLElement($note);
// 向 body 元素添加一个子元素
$xml->body->addChild("date","2014-01-01");
// 在 note 内部的最后一个元素后添加一个子元素
$footer=$xml->addChild("footer","Some footer text");
echo $xml->asXML();
<p>选择“查看源代码”可查看添加的 "date" 和 "footer" 元素。</p>
</body>
</html>