我正在尝试使用Goutte库提取favicon,但无法正常工作并返回不存在的错误节点。
我的代码:
// Import Goutte here...
$client = new Client();
$url = 'https://riojournal.com/articles.php?id=29319';
$crawler = $client->request( 'GET', $url );
$icon = $crawler->filterXpath('//link[@rel="*"]')->attr('href');
怎么了?