DOMElement::removeAttributeNS

(PHP 5, PHP 7, PHP 8)

DOMElement::removeAttributeNSRemoves attribute

Beschreibung

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

Removes attribute localName in namespace namespace from the element.

Parameter-Liste

namespace

The namespace URI.

localName

The local name.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Fehler/Exceptions

DOM_NO_MODIFICATION_ALLOWED_ERR

Raised if the node is readonly.

Siehe auch

To Top