DOMElement::setAttributeNode
(PHP 5, PHP 7, PHP 8)
DOMElement::setAttributeNode — 新しい属性ノードを要素に追加する
説明
新しい属性ノード attr
を要素に追加します。
要素に同じ名前の属性が既に存在している場合、
その属性は attr
で置き換えられます。
パラメータ
attr
-
属性ノード。
戻り値
属性が置換された場合は置換前のノード、そうでない場合は null
を返します。
DOM_WRONG_DOCUMENT_ERR
エラーが発生した場合、
かつ strictErrorChecking が false
の場合には、false
を返します。
参考
- DOMElement::hasAttribute() - 属性が存在するかどうかを調べる
- DOMElement::getAttributeNode() - 属性ノードを返す
- DOMElement::removeAttributeNode() - 属性を削除する
+add a note
User Contributed Notes 1 note
karvjorm at users.sourceforge.net ¶
17 years ago
$dom = new DomDocument('1.0','iso-8859-15');
$ht_ml = $dom->appendChild($dom->createElement('html'));
$he_ad = $ht_ml->appendChild($dom->createElement('head'));
$tit_le= $he_ad->appendChild($dom->createElement('title'));
$tit_le->appendChild($dom->createTextNode('DOMAttr test'));
$me_ta = $he_ad->appendChild(new DOMElement('meta'));
$me_ta->setAttributeNode(new DOMAttr('name', 'Description'));
$me_ta->setAttributeNode(new DOMAttr('content', 'example'));
$me_ta = $he_ad->appendChild(new DOMElement('meta'));
$me_ta->setAttributeNode(new DOMAttr('name', 'Author'));
$me_ta->setAttributeNode(new DOMAttr('content', 'karvjorm'));
Result:
<?xml version="1.0" encoding="iso-8859-15"?>
<html>
<head>
<title>DOMAttr test</title>
<meta name="Description" content="example"/>
<meta name="Author" content="karvjorm"/>
</head>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google