DOMElement::removeAttributeNS

(PHP 5, PHP 7, PHP 8)

DOMElement::removeAttributeNSRemoves attribute

說明

public DOMElement::removeAttributeNS(?string $namespace, string $localName): void

Removes attribute localName in namespace namespace from the element.

參數(shù)

namespace

The namespace URI.

localName

The local name.

返回值

成功時返回 true, 或者在失敗時返回 false。

錯誤/異常

DOM_NO_MODIFICATION_ALLOWED_ERR

Raised if the node is readonly.

參見