3

我正在使用DOMDocumentDOMXPath来确定我的 HTML 内容中是否存在某些短语(关键字短语),例如搜索关键字是否为粗体。我使用以下代码并且工作正常,只是在搜索关键字时我需要“忽略”一些字符。使用以下代码:

$characters_to_ignore = array(':','(',')','/');
$keyword = 'keyword AAA';
$content = "Some HTML content for example <b>keyword: AAA</b> and other HTML";
$exp = '//b[contains(., "' . $keyword . '")]|//strong[contains(., "' . $keyword . '")]|//span[contains(@style, "bold") and contains(., "' .  $keyword . '")]';

$doc = new DOMDocument();
$doc->loadHTML(strtolower($content));
$xpath = new DOMXPath($doc);
$elements = $xpath->query($exp);

我需要识别“关键字:AAA”以及“关键字 AAA”,因此我需要指定 DOMXPath 查询以在搜索关键字词组时忽略变量 $characters_to_ignore 中的字符。

前面的代码适用于“关键字 AAA”,我怎样才能将其更改为匹配“关键字:AAA”?(以及 $characters_to_ignore 中的任何字符)

新信息:也许使用这个

fn:包含(字符串 1,字符串 2)

但我找不到一个可行的例子。

4

1 回答 1

1

好吧,您可能已经以某种方式解决了它,但这是解决方案......

使用 XPath 2.0 方法会很简单matches(),但 PHPDOMXPath类目前只支持 XPath 1.0。

但是从 PHP 5.3 开始,DOMXPath类具有registerPHPFunctions()方法,它允许我们将 PHP 函数用作 XPath 函数。:)

使其工作:

$keyword = 'AAA';
$regex = "|keyword[:()/]? $keyword|";
$content = "Some HTML content for example <b>keyword: AAA</b> and other HTML";
$exp = "//b[php:functionString('preg_match', '$regex', .)]|//strong[php:functionString('preg_match', '$regex', .)]|//span[contains(@style, 'bold') and php:functionString('preg_match', '$regex', .)]";

$doc = new DOMDocument();
$doc->loadHTML($content);
$xpath = new DOMXPath($doc);
$xpath->registerNamespace('php', 'http://php.net/xpath');
$xpath->registerPHPFunctions();
$elements = $xpath->query($exp);
于 2013-07-06T02:50:35.960 回答