gpt4 book ai didi

php - 使用 XPath 和 PHP 的 SimpleXML 查找包含字符串的节点

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:01:56 24 4
gpt4 key购买 nike

我尝试结合使用 SimpleXML 和 XPath 来查找包含特定字符串的节点。

<?php
$xhtml = <<<EOC
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Test</title>
</head>
<body>
<p>Find me!</p>
<p>
<br />
Find me!
<br />
</p>
</body>
</html>
EOC;

$xml = simplexml_load_string($xhtml);
$xml->registerXPathNamespace('xhtml', 'http://www.w3.org/1999/xhtml');

$nodes = $xml->xpath("//*[contains(text(), 'Find me')]");

echo count($nodes);

预期输出:2实际输出:1

当我把第二段的xhtml改成

<p>
Find me!
<br />
</p>

然后它按预期工作。我的 XPath 表达式必须如何匹配所有包含“Find me”的节点,无论它们在哪里?

使用 PHP 的 DOM-XML 是一种选择,但不是必需的。

提前致谢!

最佳答案

这取决于你想做什么。您可以选择所有 <p/>在其后代中包含“Find me”的元素

//xhtml:p[contains(., 'Find me')]

这将返回重复项,因此您不指定节点的种类,那么它将返回 <body/><html/>

或者您可能想要任何具有包含“Find me”的子(不是后代)文本节点的节点

//*[text()[contains(., 'Find me')]]

这个不会返回<html/><body/> .


我忘了说 .表示节点的全部文本内容。 text()用于检索 [a nodeset of] 文本节点。你的表达有问题contains(text(), 'Find me')是那个contains()仅适用于字符串,不适用于节点集,因此它转换 text()到第一个节点的值,这就是为什么删除第一个 <br/>让它发挥作用。

关于php - 使用 XPath 和 PHP 的 SimpleXML 查找包含字符串的节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3726300/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com