DOMElement->hasAttributeNS()
DOMElement->hasAttributeNS() — 属性が存在するかどうかを調べる
説明
class DOMElement {bool hasAttributeNS ( string namespaceURI, string localName )
} 要素のメンバとして localName という名前の属性が 名前空間 namespaceURI に存在するかどうかを示します。
パラメータ
- namespaceURI
- 名前空間 URI。
- localName
- ローカル名。
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。参考
DOMElement->hasAttribute() |
DOMElement->getAttributeNS() |
DOMElement->setAttributeNS() |
DOMElement->removeAttributeNS() |
- DOMElement->hasAttributeNS()のページへのリンク