例
子元素添加到<body>元素和新的<footer>元素:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't 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的元素。
句法
addChild( name,value,ns );
參數 | 描述 |
---|---|
name | 需要。 指定子元素的名稱添加 |
value | 可選的。 指定子元素的值 |
ns | 可選的。 指定子元素命名空間 |
技術細節
返回值: | 返回表示添加到XML孩子一個SimpleXMLElement對象 |
---|---|
PHP版本: | 5.1.3+ |
<PHP SimpleXML的參考