如何注册PHP函数中的XPath?(How to register PHP function in

2019-10-18 19:43发布

我怎样才能register PHP函数XPATH ? 由于XPATH不会允许我使用ends-with()

这里是一个解决方案,由一个成员给出,但它不工作。

他一直使用的代码:

$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。

Answer 1:

在你的问题,它看起来像一个错字,没有功能命名的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更多的信息,这也是其中的代码示例已经取之。

我希望这是有益的,让我知道如果你仍然有这个问题。

见还有:

  • 如何使用浸渍在PHP中添加HTML属性(2010年8月)
  • 在PHP XPath-使用正则表达式>评估(2011年11月)
  • 获取与XPath中(PHP)(2012年7月)大写开始标记 ; 在具体的这个答案 。
  • 获得从一个特定的正则表达式的搜索结果的XPath一堆的XML文件(MAR 2013年) ; 在具体的这个答案 。


文章来源: How to register PHP function in XPath?