The DOMXPath class

(PHP 5, PHP 7, PHP 8)

简介

Allows to use XPath 1.0 queries on HTML or XML documents.

类摘要

class DOMXPath {
/* 属性 */
public readonly DOMDocument $document;
/* 方法 */
public function __construct(DOMDocument $document, bool $registerNodeNS = true)
public function evaluate(string $expression, ?DOMNode $contextNode = null, bool $registerNodeNS = true): mixed
public function query(string $expression, ?DOMNode $contextNode = null, bool $registerNodeNS = true): mixed
public static function quote(string $str): string
public function registerNamespace(string $prefix, string $namespace): bool
public function registerPhpFunctionNS(string $namespaceURI, string $name, callable $callable): void
public function registerPhpFunctions(string|array|null $restrict = null): void
}

属性

document
The document that is linked to this object.
registerNodeNamespaces
When set to true, namespaces in the node are registered.

更新日志

版本 说明
8.4.0 It is no longer possible to clone a DOMXPath object. Doing so will result in an exception being thrown. Prior to PHP 8.4.0 this resulted in an unusable object.
8.0.0 The registerNodeNamespaces property has been added.

目录