Symfony DomCrawler:获取链接内的标题

时间:2017-04-15 16:24:33

标签: php symfony web-crawler domcrawler

我正在尝试在<a />标记内添加标题。 例如:<a href="test.php">Nice</a>将输出Nice

我正在使用Symfony DomCrawler。

这就是我的尝试:

$crawler = Goutte::request('GET', 'somelink');
$crawler->filter('a')->each(function ($node) use (&$links, &$platforms, &$limit, &$titles, &$startIndex) {
    echo 'HTML: ' .$node->text(); //Shows nothing
    echo '<br />';
    echo 'LINK:' .$node->link()->getUri(); //Shows the link
    echo '<hr />';
});

我也试过$node->html();但没有运气。标题不会显示。

API中找不到任何相关信息。

有什么想法吗?

0 个答案:

没有答案