将属性添加到根元素 (<note>) 和 <body> 元素:
<?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 attribute to root element
$xml->addAttribute("type","private");
// Add attribute to body element
$xml->body->addAttribute("date","2014-01-01");
echo $xml->asXML();
?>
运行示例 »
addAttribute() 函数将属性附加到 SimpleXML 元素。
SimpleXMLElement::addAttribute(
name, value, ns)
Parameter | Description |
---|---|
name | Required. Specifies the name of the attribute to add |
value | Optional. Specifies the value of the attribute |
ns | Optional. Specifies a namespace for the attribute |
返回值: | 没有什么 |
---|---|
PHP 版本: | 5.1.3+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!