DomNode->add_namespace
(No version information available, might be only in CVS)
DomNode->add_namespace — Adds a namespace declaration to a node
Descrierea
DOMNode
bool add_namespace
( string $uri
, string $prefix
)
This method adds a namespace declaration to a node.
Notă: This method is not part of the DOM specification.
Parametri
- uri
-
The namespace URI of the node.
- prefix
-
The namespace prefix of the node.
Valorile întroarse
Întoarce valoarea TRUE în cazul succesului sau FALSE în cazul eşecului.
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().
Notă: Remember the an attribute does not inherit its namespace from the element it is attached to.