2

我想获取页面上所有链接的列表。其中一些链接位于area标签中。

所以我这样做是为了获得所有链接的完整列表:

// Get the a links
$links = $crawler->filter('a')->links();

// Append the links in area tag (clicakble images)
$links = array_merge($links, $crawler->filter('area')->links());

有没有办法直接在方法中选择标签和标签中的filter所有链接,所以我没有使用该功能?aareaarray_merge

4

0 回答 0