DOM XML 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

DomNode->add_namespace

(No version information available, might be only in CVS)

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.

Note: 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.

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

参见


DOM XML 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程