The DOMNameSpaceNode class

(PHP 5, PHP 7, PHP 8)

Class synopsis

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

Properties

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.

Changelog

VersionDescription
8.3.0 Properties DOMNameSpaceNode::$parentElement, and DOMNameSpaceNode::$isConnected have been added.
To Top