6

您能帮我找到一种使用 Goutte 从元描述、元关键字和机器人内容中获取内容的方法吗?另外,我如何定位<link rel="stylesheet" href=""><script>

下面是我用来获取<title>内容的 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

4

1 回答 1

10

您可以使用:

$crawler->filterXpath('//meta[@name="description"]')->attr('content');
于 2014-09-11T08:27:21.767 回答