codecamp

PHP addChild() 函数

PHP addChild() 函数

PHP SimpleXML 参考手册 PHP SimpleXML 参考手册

实例

给 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+


PHP SimpleXML 参考手册 PHP SimpleXML 参考手册
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PHP 相关教程

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }