parent root
PHP: DOMXPath::__construct - Manual

DOMXPath::__construct

(PHP 5, PHP 7)

DOMXPath::__construct Creates a new DOMXPath object

Description

public DOMXPath::__construct ( DOMDocument $doc )

Creates a new DOMXPath object.

Parameters

doc

The DOMDocument associated with the DOMXPath.

add a noteadd a note

User Contributed Notes 2 notes

up
17
Saulo Vallory
12 years ago
The DOMXPath object doesn't create a reference to the document. If you load a new xml using either load, loadXML or loadHTML functions the DOMXPath object will still query and evaluate over the source in the DOMDocument when it was created.
up
2
thsoft at vipmail dot hu
12 years ago
As of PHP 5.2.0, DOMXPath object implements XPath 1.0.
To Top
parent root