gpt4 book ai didi

php - Xpath 返回错误的输出,而不是浏览器中的 XPath 帮助程序

转载 作者:行者123 更新时间:2023-12-03 16:17:38 24 4
gpt4 key购买 nike

我正在使用 XPath 助手来创建我的路径,但是我似乎第一次得到一个完全错误的输出。我创建了以下路径来获取当天的文章链接。只是为了测试我已经硬编码了当前日期。

//b[contains(., '22/4 - 2015')]/parent::div/following-sibling::div[@class='newsItem']

它不是像在 XPath Helper 中那样返回每个 newsItem,而是返回整个页面?怎么会这样。这是我的代码
function scrape() {
$hltv = file_get_html("http://www.hltv.org/?pageid=96");
foreach($hltv->find("//b[contains(., '22/4 - 2015')]/parent::div/following-sibling::div[@class='newsItem']") as $hltv_element) {
echo $hltv_element;
}

}

最佳答案

尚不完全清楚您希望得到什么结果,但这里有一段相关的 HTML,希望能更清楚地说明:

<div style="margin-bottom:5px;margin-top:5px;">
<b>22/4 - 2015</b>
</div>
<div class="newsItem">
<a href="/news/14794-video-pyth-vs-dignitas" id="newsitem14794" title="Video: pyth vs. dignitas">
<span style="float:left;">
<img style="vertical-align: 1px;" src="http://static.hltv.org//images/mod_csgo.png" title="Counter-Strike: Global Offensive"/>
<img src="http://static.hltv.org//images/flag/se.gif" alt="" />&nbsp;</span> <span style="float:left;cursor: hand;width:350px;color:#000000"/>
<b>Video: pyth vs. dignitas</b>
</span>
</a>
<span style="float: right;">(22)</span>
</div>
<div style="clear:both"></div>
<div class="newsItem"><a href="/news/14795-video-keev-vs-myxmg" id="newsitem14795" title="Video: keev vs. myXMG">
<span style="float:left;">
<img style="vertical-align: 1px;" src="http://static.hltv.org//images/mod_csgo.png" title="Counter-Strike: Global Offensive"/>

如您所见,有一个 <b>22/4 - 2015</b>被选中。但是它的父级,第一个 div在片段中,有多个关注 div @class="newsItem" 的 sibling .也许你本来打算
//b[contains(., '22/4 - 2015')]/parent::div/following-sibling::div[@class='newsItem'][1]

is simple html dom using an old version of XPath or?



在我看来,所有名称中包含“simple”的库(SimpleXML、Simple HTML DOM)实际上并不那么简单,而且经常会引起问题。所有库都使用 XPath 1.0,所以这不是问题。你最好使用 DOMDocument 和 DomXPath .

编辑

just to be clear: I want to get the titles of the news on the current date



然后使用
//b[contains(., '22/4 - 2015')]/parent::div/following-sibling::div[@class='newsItem'][1]/a/@title

关于php - Xpath 返回错误的输出,而不是浏览器中的 XPath 帮助程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29792265/

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