gpt4 book ai didi

php - xPath查询问题

转载 作者:行者123 更新时间:2023-12-03 16:01:10 25 4
gpt4 key购买 nike

在上一个问题中,用户帮助了我,但我坚持做简单的请求:

<?php $nodes = $xPath->query('//table[@class="some_class"]');

但它返回我整个表数据而不是表的行,这就是为什么我只想检索表的“td”。

我尝试过(但是它不起作用)

 <?php $nodes = $xPath->query('//table[@class="some_class"]/tbody/tr');

请问我做错了什么?

*编辑 HTML 结构*

<table class="some_class">
<tbody><tr>
<td class="firstcol" width="160">name</td>
<td width="250">Some&nbsp;Data</td>
</tr>

最佳答案

//table[@class='some_class']//td

在其中添加了一个中间的 // ,因为我对任何级别的 tbody 的实际存在都不信任(尽管对于 DOM 来说它们应该是这样)。

关于php - xPath查询问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3833955/

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