The DOMElement::setAttributeNS() function is an inbuilt function in PHP which is used to set an attribute with given namespace and name to the given value. If the attribute does not exist, it will be created.
Syntax:
php
Output: You can press Ctrl + U to see the DOM.
Example 2:
php
Output:
void DOMElement::setAttributeNS( string $namespaceURI, string $qualifiedName, string $value )Parameters: This function accepts three parameters as mentioned above and described below:
- $namespaceURI: It specifies the namespace URI.
- $qualifiedName: It specifies the name of attribute.
- $value: It specifies the value of attribute.
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Create an element
$node = $dom->createElementNS("my_namespace", "x:p",
'Hello, this is my paragraph.');
// Add the node to the dom
$newnode = $dom->appendChild($node);
// Set the attribute
$newnode->setAttributeNS("my_namespace", "id", "my_value");
echo $dom->saveXML();
?>
Example 2:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Create an element
$node = $dom->createElementNS("my_namespace", "x:p",
'Hello, this is my paragraph.');
// Add the node to the dom
$newnode = $dom->appendChild($node);
echo "Before the addition of attributes: <br>";
// Get the attribute count
$attributeCount = $node->attributes->count();
echo 'No of attributes => ' . $attributeCount;
// Set the attribute with a namespace
$newnode->setAttributeNS("my_namespace", "style", "color:blue");
echo "<br>After the addition of attributes: <br>";
// Get the attribute count
$attributeCount = $node->attributes->count();
echo 'No of attributes => ' . $attributeCount;
?>
Before the addition of attributes: No of attributes => 0 After the addition of attributes: No of attributes => 1Reference: https://www.php.net/manual/en/domelement.setattributens.php