你能帮我找到一种方法,使用Goutte从元描述,元关键词和机器人内容中获取内容.另外,我如何定位和
?
下面是我用来获取
内容的PHP :
require_once 'goutte.phar'; use Goutte\Client; $client = new Client(); $crawler = $client->request('GET', 'http://stackoverflow.com/'); $crawler->filter('title')->each(function ($node) { $content .= "Title: ".$node->text().""; echo $content; });
这是Goutte的链接 - https://github.com/fabpot/goutte
您可以使用:
$crawler->filterXpath('//meta[@name="description"]')->attr('content');