DOMElement::removeAttributeNS

(PHP 5, PHP 7, PHP 8)

DOMElement::removeAttributeNSRemoves attribute

Description

publicDOMElement::removeAttributeNS(?string$namespace, string$localName): void

Removes attribute localName in namespace namespace from the element.

Parameters

namespace

The namespace URI.

localName

The local name.

Return Values

No value is returned.

Errors/Exceptions

DOM_NO_MODIFICATION_ALLOWED_ERR

Raised if the node is readonly.

See Also

To Top