DOM XML (PHP 4) 함수 목록
PHP Manual

DomNode->add_namespace

(PHP 4 >= 4.3.0)

DomNode->add_namespace Adds a namespace declaration to a node

설명

bool add_namespace ( string $uri , string $prefix )

This method adds a namespace declaration to a node.

Note: This method is not part of the DOM specification.

인수

uri

The namespace URI of the node.

prefix

The namespace prefix of the node.

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

Migrating to PHP 5

You can set the namespace URI and prefix of a DOMElement or a DOMAttr at creation time by using DOMDocument::createElementNS or DOMDocument::createAttributeNS.

Note: Remember the an attribute does not inherit its namespace from the element it is attached to.

참고


DOM XML (PHP 4) 함수 목록
PHP Manual