在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","2013-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+ |