If a new namespace is introduced while creating and inserting an attribute, createAttributeNS() does not behave in the same way as createElementNS().
(1) Location: With createAttributeNS(), the new namespace is declared at the level of the document element. By contrast, createElementNS() declares the new namespace at the level of the affected element itself.
(2) Timing: With createAttributeNS(), the new namespace is declared in the document as soon as the attribute is created - the attribute does not actually have to be inserted. createElementNS() doesn't affect the document as long as the element is not inserted.
An example:
<?php
$source = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<root><tag></tag></root>
XML;
/*
I. createAttributeNS:
* a new namespace shows up immediately, even without insertion of the attribute
* the new namespace is declared at the level of the document element
*/
$doc = new DOMDocument( '1.0' );
$doc->loadXML( $source );
// (1) We just create a "namespace'd" attribute without appending it to any element.
$attr_ns = $doc->createAttributeNS( '{namespace_uri_here}', 'example:attr' );
print $doc->saveXML() . "\n";
/*
Result: The namespace declaration appears, having been added to the document element. Output:
<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:example="{namespace_uri_here}"><tag/></root>
*/
// (2) Next, we give the attribute a value and insert it.
$attr_ns->value = 'value';
$doc->getElementsByTagName( 'tag' )->item(0)->appendChild( $attr_ns );
print $doc->saveXML() . "\n";
/*
Result: The "namespace'd" attribute shows up as well. Output:
<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:example="{namespace_uri_here}"><tag example:attr="value"/></root>
*/
/*
II. createElementNS:
* a new namespace shows up only when the element is inserted
* the new namespace is declared at the level of the inserted element
*/
$doc = new DOMDocument( '1.0' );
$doc->loadXML( $source );
// (1) We create a "namespace'd" element without inserting it into the document.
$elem_ns = $doc->createElementNS( '{namespace_uri_here}', 'example:newtag' );
print $doc->saveXML() . "\n";
/*
Result: The document remains unchanged. Output:
<?xml version="1.0" encoding="UTF-8"?>
<root><tag/></root>
*/
// (2) Next, we insert the new element.
$doc->getElementsByTagName( 'tag' )->item(0)->appendChild( $elem_ns );
print $doc->saveXML() . "\n";
/*
Result: The namespace declaration appears, and it is embedded in the element using it. Output:
<?xml version="1.0" encoding="UTF-8"?>
<root><tag><example:newtag xmlns:example="{namespace_uri_here}"/></tag></root>
*/
?>
DOMDocument::createAttributeNS
(PHP 5)
DOMDocument::createAttributeNS — 関連付けられた名前空間に新しい属性を作成する
説明
この関数は、DOMAttr クラスの新しいインスタンスを作成します。 このノードは、( DOMNode::appendChild() などで) 挿入されない限り、ドキュメント内にあらわれません。
パラメータ
-
namespaceURI -
名前空間の URI。
-
qualifiedName -
属性のタグ名とプレフィックスを、prefix:tagname のような形式で指定する。
返り値
新しい DOMAttr、あるいはエラーが発生した場合は
FALSE を返します。
エラー / 例外
-
DOM_INVALID_CHARACTER_ERR -
qualifiedNameが無効な文字を含んでいる場合に発生します。 -
DOM_NAMESPACE_ERR -
qualifiedNameが不正な形式である場合、あるいはqualifiedNameがプレフィックスを含んでいる にもかかわらずnamespaceURIがNULLである場合に発生します。
参考
- DOMNode::appendChild() - 子要素群の最後に新しい子要素を追加する
- DOMDocument::createAttribute() - 新しい属性を作成する
- DOMDocument::createCDATASection() - 新しい cdata ノードを作成する
- DOMDocument::createComment() - 新しい comment ノードを作成する
- DOMDocument::createDocumentFragment() - 新しい文書片を作成する
- DOMDocument::createElement() - 新しい要素ノードを作成する
- DOMDocument::createElementNS() - 関連付けられた名前空間に新しい要素を作成する
- DOMDocument::createEntityReference() - 新しいエンティティ参照ノードを作成する
- DOMDocument::createProcessingInstruction() - 新しい PI ノードを作成する
- DOMDocument::createTextNode() - 新しいテキストノードを作成する
_ michael
01-Jun-2010 04:35
