append_child"HREF="function.domnode-append-child.html"> Podręcznik PHP Poprzedni Następny (no version information, mig..."/>
Forum und email
DomNode->add_namespace

DomNode->add_namespace

(no version information, might be only in CVS)

DomNode->add_namespace --  Adds a namespace declaration to a node

Opis

class DOMNode {

bool add_namespace ( string uri, string prefix )

}

This method adds a namespace declaration to a node.

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

Parametry

uri

The namespace URI of the node.

prefix

The namespace prefix of the node.

Zwracane wartości

Zwraca TRUE w przypadku sukcesu, FALSE w przypadku porażki.

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().

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