PHP 8.4.0 RC4 available for testing

DOMXPath::__construct

(PHP 5, PHP 7, PHP 8)

DOMXPath::__constructYeni bir DOMXPath nesnesi oluşturur

Açıklama

public DOMXPath::__construct(DOMDocument $document, bool $registerNodeNS = true)

Yeni bir DOMXPath nesnesi oluşturur.

Bağımsız Değişkenler

document

DOMXPath ile ilişkili DOMDocument nesnesi.

registerNodeNS

kaydet

Bağlam düğümünün kapsam içi ad alanı öneklerinin DOMXPath nesnesine otomatik olarak kaydedilip kaydedilmeyeceği. Bu, kapsam dahilindeki her ad alanı için DOMXPath::registerNamespace() öğesini manuel olarak çağırmaya gerek kalmaması için kullanılabilir. Bir ad alanı öneki çakışması olduğunda, yalnızca en yakın soydan gelen ad alanı öneki kaydedilir.

add a note

User Contributed Notes 1 note

up
19
Saulo Vallory
17 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.
To Top