4

以下をスクレイピングしようとしています。基本的にはテキストとリンクが必要です。PHP でGoutteを使用しています。次のコードを使用してテキストを取得できますが、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>
4

2 に答える 2

10

以下のコードは、この問題を修正します。

$crawler->filter('#most-popular > div.panel.open > ol > li.first-child.ol1 > a')->each(function ($node) {
    $href = $node->extract(array('href'));
    var_dump($href[0]);
});
于 2015-03-16T10:01:22.353 に答える