将子元素添加到 <body> 元素和新的 <footer> 元素中:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Do not forget me this weekend!</body>
</note>
XML;
$xml = new SimpleXMLElement($note);
// Add a child element to the body element
$xml->body->addChild("date","2014-01-01");
// Add a child element after the last element inside note
$footer = $xml->addChild("footer","Some footer text");
echo $xml->asXML();
?>
运行示例 »
addChild() 函数将一个子元素附加到 SimpleXML 元素。
SimpleXMLElement::addChild(
name, value, ns)
Parameter | Description |
---|---|
name | Required. Specifies the name of the child element to add |
value | Optional. Specifies the value of the child element |
ns | Optional. Specifies a namespace for the child element |
返回值: | 表示添加到 XML 节点的子节点的 SimpleXMLElement 对象 |
---|---|
PHP 版本: | 5.1.3+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!