PHP addAttribute() Function
Example
Add an attribute to the root element (<note>) and to the <body> element:
<?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","2014-01-01");
echo $xml->asXML();
?>
Run example »
Definition and Usage
The addAttribute() function adds an attribute to the SimpleXML element.
Syntax
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 |
Technical Details
Return Value: | No value is returned |
---|---|
PHP Version: | 5.1.3+ |
❮ PHP SimpleXML Reference