DOMXPath::quote
(PHP 8 >= 8.4.0)
DOMXPath::quote — Quotes a string for use in an XPath expression
参数
str
- The string to quote.
返回值
Returns a quoted string to be used in an XPath expression.
示例
示例 #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";
}
?>
以上示例会输出:
//book[@name="'quoted' name"] Found Book title
Mixed quote types are also supported:
<?php
echo DOMXPath::quote("'different' \"quote\" styles");
?>
以上示例会输出:
concat("'different' ",'"quote" styles')
参见
- DOMXPath::evaluate() - Evaluates the given XPath expression and returns a typed result if possible
- DOMXPath::query() - Evaluates the given XPath expression
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。