目录

PHP addAttribute() 函数

❮ PHP SimpleXML 参考

示例

将属性添加到根元素 (<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+

❮ PHP SimpleXML 参考