register
我如何PHP
XPATH
发挥作用?因为XPATH
不允许我使用ends-with()
这是由一名成员提供的solutions,但不适用。
他使用的代码是:
$xpath = new DOMXPath($document);
$xpath->registerNamespace("php", "http://php.net/xpath");
$xpath->registerPHPFunctions("ends_with");
$nodes = $x->query("//tr[/td/a/img[php:function('ends-with',@id,'_imgProductImage')]"
function ends_with($node, $value){
return substr($node[0]->nodeValue,-strlen($value))==$value;
}
我使用的是PHP 5.3.9。
答案 0 :(得分:4)
在你的问题中,它看起来像一个拼写错误,没有名为ends-with
的函数,因此我希望它不起作用:
//tr[/td/a/img[php:function('ends-with',@id,'_imgProductImage')]
^^^^^^^^^
而是使用正确的语法,例如正确的函数名称:
//tr[/td/a/img[php:function('ends_with',@id,'_imgProductImage')]
^^^^^^^^^
或者例如以下示例:
是book.xml:
<?xml version="1.0" encoding="UTF-8"?>
<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>
PHP:
<?php
$doc = new DOMDocument;
$doc->load('book.xml');
$xpath = new DOMXPath($doc);
// Register the php: namespace (required)
$xpath->registerNamespace("php", "http://php.net/xpath");
// Register PHP functions (no restrictions)
$xpath->registerPHPFunctions();
// Call substr function on the book title
$nodes = $xpath->query('//book[php:functionString("substr", 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";
}
如您所见,此示例注册所有PHP函数,包括现有 substr()
函数。
有关详细信息,请参阅DOMXPath::registerPHPFunctions
,这也是代码示例的来源。
我希望这有帮助,如果您对此仍有疑问,请与我联系。
参见: