DOMElement::removeAttributeNS
(PHP 5, PHP 7, PHP 8)
DOMElement::removeAttributeNS — 属性を削除する
説明
名前空間 namespace
にある
localName
という名前の属性を
要素から削除します。
パラメータ
namespace
-
名前空間 URI。
localName
-
ローカル名。
戻り値
値を返しません。
参考
- DOMElement::hasAttributeNS() - 属性が存在するかどうかを調べる
- DOMElement::getAttributeNS() - 属性の値を返す
- DOMElement::setAttributeNS() - 新しい属性を追加する
+add a note
User Contributed Notes 1 note
primaryspace at hotmail dot com ¶
19 years ago
This method can be used to remove a namespace declaration from an element, even though the declaration is not considered an attribute by the DOM. The prefix will be removed from any element or attribute using it.
<?php
$dom = DOMDocument::loadXML('<foo:root xmlns:foo="http:bar"/>');
$element = $dom->childNodes->item(0);
// prints '0':
echo (int) $element->hasAttributeNS('http:bar', 'foo');
$element->removeAttributeNS('http:bar', 'foo');
/* prints '<?xml version="1.0"?> <root/>': */
print htmlentities($dom->saveXML());
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google