GoLang DOMElement::removeAttributeNS

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



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

PHP DOMElement::removeAttributeNS

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

DOMElement::removeAttributeNS

(PHP 5, PHP 7)

DOMElement::removeAttributeNSRemoves attribute

Description

public bool DOMElement::removeAttributeNS ( string $namespaceURI , string $localName )

Removes attribute is namespace namespaceURI named localName from the element.

Parameters

namespaceURI

The namespace URI.

localName

The local name.

Return Values

Returns TRUE on success or FALSE on failure.

Errors/Exceptions

DOM_NO_MODIFICATION_ALLOWED_ERR

Raised if the node is readonly.

See Also