目录

PHP addChild() 函数

❮ PHP SimpleXML 参考

示例

将子元素添加到 <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+

❮ PHP SimpleXML 参考