给根元素和 body 元素添加一个属性:
<?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); $xml->addAttribute("type","private"); $xml->body->addAttribute("date","2013-01-01"); echo $xml->asXML(); ?>
addAttribute() 函数给 SimpleXML 元素添加一个属性。
addAttribute(name,value,ns);
参数 | 描述 |
---|---|
name | 必需。规定要添加的属性的名称。 |
value | 可选。规定属性的值。 |
ns | 可选。规定属性的命名空间。 |
返回值: | 没有返回值。 |
---|---|
PHP 版本: | 5.1.3+ |
在线实例
字符集 & 工具
最新更新
站点信息
关注我们