DOMXPath::quote

(PHP 8 >= 8.4.0)

DOMXPath::quote Quotes a string for use in an XPath expression

Açıklama

public static DOMXPath::quote(string $str): string

Quotes str for use in an XPath expression.

Bağımsız Değişkenler

str
The string to quote.

Dönen Değerler

Returns a quoted string to be used in an XPath expression.

Örnekler

Örnek 1 Matching attribute value with quotes

<?php
$doc
= new DOMDocument;
$doc->loadXML(<<<XML
<books>
<book name="'quoted' name">Book title</book>
</books>
XML);

$xpath = new DOMXPath($doc);

$query = "//book[@name=" . DOMXPath::quote("'quoted' name") . "]";
echo
$query, "\n";

$entries = $xpath->query($query);

foreach (
$entries as $entry) {
echo
"Found ", $entry->textContent, "\n";
}
?>

Yukarıdaki örneğin çıktısı:

//book[@name="'quoted' name"]
Found Book title

Mixed quote types are also supported:

<?php
echo DOMXPath::quote("'different' \"quote\" styles");
?>

Yukarıdaki örneğin çıktısı:

concat("'different' ",'"quote" styles')

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top