The DOMXPath class

(PHP 5, PHP 7, PHP 8)

Introduction

Supports XPath 1.0

Class synopsis

classDOMXPath {
publicreadonlyDOMDocument$document;
public__construct(DOMDocument$document, bool$registerNodeNS = true)
publicevaluate(string$expression, ?DOMNode$contextNode = null, bool$registerNodeNS = true): mixed
publicquery(string$expression, ?DOMNode$contextNode = null, bool$registerNodeNS = true): mixed
publicregisterNamespace(string$prefix, string$namespace): bool
}

Properties

document

registerNodeNamespaces

When set to true, namespaces in the node are registered.

Changelog

VersionDescription
8.0.0 The registerNodeNamespaces property has been added.

Table of Contents

To Top