DOMXPath::registerPhpFunctionNS
(PHP >= 8.4.0)
DOMXPath::registerPhpFunctionNS — Register a PHP functions as namespaced XPath function
说明
public DOMXPath::registerPhpFunctionNS(string
$namespaceURI, string $name, callable $callable): voidThis method enables the ability to use a PHP function as a namespaced XPath function inside XPath expressions.
参数
namespaceURI- The URI of the namespace.
name- The local function name inside the namespace.
callable- The PHP function to call when the XPath function gets called within the XPath expression. When a node list is passed as parameter to the callback, they are arrays containing the matched DOM nodes.
错误/异常
- Throws a ValueError if a callback name is not valid.
-
Throws a ValueError if
optionscontains an invalid option. -
Throws a ValueError if
overrideEncodingis an unknown encoding. - Throws a TypeError if a given callback is not callable.
返回值
没有返回值。
示例
示例 #1 Register a namespaced XPath function and call it from the XPath expression
<?php
$xml = <<<EOB
<books>
<book>
<title>PHP Basics</title>
<author>Jim Smith</author>
<author>Jane Smith</author>
</book>
<book>
<title>PHP Secrets</title>
<author>Jenny Smythe</author>
</book>
<book>
<title>XML basics</title>
<author>Joe Black</author>
</book>
</books>
EOB;
$doc = new DOMDocument;
$doc->loadXML($xml);
$xpath = new DOMXPath($doc);
// Register the my: namespace (required)
$xpath->registerNamespace("my", "urn:my.ns");
// Register PHP functions (no restrictions)
$xpath->registerPHPFunctionNS(
'urn:my.ns',
'substring',
fn (array $arg1, int $start, int $length) => substr($arg1[0]->textContent, $start, $length)
);
// Call substr function on the book title
$nodes = $xpath->query('//book[my:substring(title, 0, 3) = "PHP"]');
echo "Found {$nodes->length} books starting with 'PHP':\n";
foreach ($nodes as $node) {
$title = $node->getElementsByTagName("title")->item(0)->nodeValue;
$author = $node->getElementsByTagName("author")->item(0)->nodeValue;
echo "$title by $author\n";
}
?>以上示例的输出类似于:
Found 2 books starting with 'PHP': PHP Basics by Jim Smith PHP Secrets by Jenny Smythe
参见
- DOMXPath::registerNamespace() - Registers the namespace with the DOMXPath object
- DOMXPath::query() - Evaluates the given XPath expression
- DOMXPath::evaluate() - Evaluates the given XPath expression and returns a typed result if possible
- XSLTProcessor::registerPHPFunctions() - Enables the ability to use PHP functions as XSLT functions
- XSLTProcessor::registerPHPFunctionNS() - Register a PHP function as namespaced XSLT function
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/domxpath.registerphpfunctionns.php