我正在尝试在<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中找不到任何相关信息。
有什么想法吗?