查找所有空 DOM 节点

发布于 2024-11-27 17:20:33 字数 481 浏览 1 评论 0原文

仅使用 xPath 是否可以识别空 DOM 节点?

例如,任何像这样的节点:

<div></div>

我希望在 xPath 返回的节点上只执行一个 length ,如下所示:

$doc = new DOMDocument();

$doc->loadHTML($html);

$xpath = new DOMXPath($doc);

$xpath_rule = "XPATH";

$returned_nodes = $xpath->query($xpath_rule);

if($returned_nodes->length > 0){ // it is not empty

如果这不能用 xPath 完成,我怎样才能有效地做到这一点遍历整个 DOM 树?

PHP5 仅支持 xPath 1.0。

Is it possible to identify a DOM node if it is empty using just xPath?

For example, any node like so:

<div></div>

I am hoping to do just a length on the returned nodes of the xPath like so:

$doc = new DOMDocument();

$doc->loadHTML($html);

$xpath = new DOMXPath($doc);

$xpath_rule = "XPATH";

$returned_nodes = $xpath->query($xpath_rule);

if($returned_nodes->length > 0){ // it is not empty

If this can't be done with xPath, how can I do this efficiently by traversing the whole DOM tree?

Only xPath 1.0 is supported by PHP5.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忱杏 2024-12-04 17:20:33

此 XPath 表达式匹配所有没有子元素或仅包含空格的元素:

//*[not(*) and not(normalize-space(.))]

This XPath expression matches all elements without children or containing only whitespace:

//*[not(*) and not(normalize-space(.))]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文