DOM-XML-Funktionen
PHP Manual

DomNode->add_namespace

(PHP 4 >= 4.3.0)

DomNode->add_namespace Adds a namespace declaration to a node

Beschreibung

bool DOMNode::add_namespace ( string $uri , string $prefix )

This method adds a namespace declaration to a node.

Hinweis:

This method is not part of the DOM specification.

Parameter-Liste

uri

The namespace URI of the node.

prefix

The namespace prefix of the node.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

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.

Hinweis:

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

Siehe auch


DOM-XML-Funktionen
PHP Manual