DOMElement::removeAttributeNS
(PHP 5, PHP 7, PHP 8)
DOMElement::removeAttributeNS — Removes attribute
說明
   public DOMElement::removeAttributeNS(?string 
  $namespace, string $localName): void
   Removes attribute localName in namespace namespace from the element.
  
參數
- 
namespace
- 
      The namespace URI. 
- 
localName
- 
      The local name. 
返回值
   成功時返回 true, 或者在失敗時返回 false。
  
錯誤/異常
- 
DOM_NO_MODIFICATION_ALLOWED_ERR
- 
      Raised if the node is readonly. 
參見
- DOMElement::hasAttributeNS() - Checks to see if attribute exists
- DOMElement::getAttributeNS() - Returns value of attribute
- DOMElement::setAttributeNS() - Adds new attribute