GoLang DOMElement::setAttributeNode

request it (233)
GoLang replacement for PHP's DOMElement::setAttributeNode [edit | history]



Do you know a GoLang replacement for PHP's DOMElement::setAttributeNode? Write it!

PHP DOMElement::setAttributeNode

PHP original manual for DOMElement::setAttributeNode [ show | php.net ]

DOMElement::setAttributeNode

(PHP 5, PHP 7)

DOMElement::setAttributeNodeAdds new attribute node to element

Description

public DOMAttr DOMElement::setAttributeNode ( DOMAttr $attr )

Adds new attribute node attr to element.

Parameters

attr

The attribute node.

Return Values

Returns old node if the attribute has been replaced or NULL.

Errors/Exceptions

DOM_NO_MODIFICATION_ALLOWED_ERR

Raised if the node is readonly.

See Also