|
PHP5中文手册
DomNode->add_namespace(No version information available, might be only in CVS) DomNode->add_namespace — Adds a namespace declaration to a node 说明DOMNode
bool add_namespace
( string $uri
, string $prefix
)
This method adds a namespace declaration to a node.
参数
返回值如果成功则返回 TRUE,失败则返回 FALSE。 Migrating to PHP 5You can set the namespace URI and prefix of a DOMElement or a DOMAttr at creation time by using DOMDocument->createElementNS() or DOMDocument->createAttributeNS().
|