gpt4 book ai didi

php - 使用 Goutte 和 PHP 抓取列表以获取 href 的问题

转载 作者:行者123 更新时间:2023-12-01 16:19:33 26 4
gpt4 key购买 nike

我正在尝试抓取以下内容,我基本上想要文本和链接,我正在使用 Goutte用 PHP。我可以使用以下代码获取文本,但无法获取 href 值。任何帮助都会很棒。

$crawler->filter('#most-popular > div > ol > li > a')->each(function ($node) {
var_dump($node->getAttribute('href'));
});


<li class="first-child ol1">
<a href="http://www.bbc.co.uk/news/uk-england-south-yorkshire-31895703" class="story">
<span class="livestats-icon livestats-1">1: </span>MP claims £17 poppy wreath expenses</a>
</li>

最佳答案

getAttribute() 实现为 attr() Crawler 类(class)。

$crawler->filter('#most-popular > div.panel.open > ol > li.first-child.ol1 > a')->each(function ($node) {
var_dump($node->attr('href'));
});

关于php - 使用 Goutte 和 PHP 抓取列表以获取 href 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29073923/

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