gpt4 book ai didi

php - 选择 nodeValue 但排除子元素

转载 作者:可可西里 更新时间:2023-11-01 13:12:31 25 4
gpt4 key购买 nike

假设我有这段代码:

<p dataname="description">
Hello this is a description. <a href="#">Click here for more.</a>
</p>

如何选择 p 的节点值但排除 a 及其内容?

我当前的代码:

$result = $xpath->query("//p[@dataname='description'][not(self::a)]");

我通过$result->item(0)->nodeValue;选择它

最佳答案

只需将/text() 附加到您的查询就可以解决问题

$result = $xpath->query("//p[@dataname='description'][not(self::a)]/text()");

关于php - 选择 nodeValue 但排除子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9192105/

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