The DOMNameSpaceNode class

(PHP 5, PHP 7, PHP 8)

类摘要

classDOMNameSpaceNode {
publicreadonlystring$nodeName;
publicreadonly?string$nodeValue;
publicreadonlyint$nodeType;
publicreadonlystring$prefix;
publicreadonly?string$localName;
publicreadonly?string$namespaceURI;
publicreadonlybool$isConnected;
publicreadonly?DOMNode$parentNode;
publicreadonly?DOMElement$parentElement;
}

属性

nodeName

The qualified name of this node.

nodeValue

The namespace URI declared by this node, or null if the empty namespace.

nodeType

The type of the node. In this case it returns XML_NAMESPACE_DECL_NODE.

prefix

The namespace prefix declared by this node.

localName

The local part of the qualified name of this node.

namespaceURI

The namespace URI declared by this node, or null if it is unspecified.

isConnected

Whether the node is connected to a document.

ownerDocument

The DOMDocument object associated with this node, or null if this node is a DOMDocument

parentNode

The parent of this node. If there is no such node, this returns null.

parentElement

The parent element of this node. If there is no such element, this returns null.

更新日志

版本说明
8.3.0 Properties DOMNameSpaceNode::$parentElement, and DOMNameSpaceNode::$isConnected have been added.
To Top