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.

Забележка: 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.

Забележка: Remember the an attribute does not inherit its namespace from the element it is attached to.

Вж. също


DOM XML (PHP 4) Функции
PHP Manual