Goutte 一个简单易用的 PHP 爬虫类库 | Laravel China 社区 - 高品质的 Laravel 和 PHP 开发者社区

[Goutte 一个简单易用的 PHP 爬虫类库 | Laravel China 社区 - 高品质的 Laravel 和 PHP 开发者社区]

Goutte 提供了优雅的 API 进行链接抓取,和解析 HTML 文档。

以下示例代码用来抓取 PHPUnit 的文档:

public function scrapePHPUnitDe()
{
    $client = new Client();
    $crawler = $client->request('GET', 'https://phpunit.de/manual/current/en/index.html');
    $toc = $crawler->filter('.toc');
    file_put_contents(base_path('resources/docs/').'index.html', $toc->html());

    $crawler->filter('.toc > dt a')->each(function($node) use ($client) {
        $href = $node->attr('href');
        $this->info("Scraped: " . $href);
        $crawler = $client->request('GET', $href);
        $chapter = $crawler->filter('.col-md-8 .chapter, .col-md-8 .appendix')->html();
        file_put_contents(base_path('resources/docs/').$href, $chapter);
    });
}

Goutte 主要使用以下 PHP 类库:

  • 页面解析:Symfony 的 BrowserKit , CssSelector 和 DomCrawler;
  • HTTP 请求: Guzzle
    • *

Practice makes perfect.


Original url: Access

Created at: 2018-10-10 17:10:03

Category: default

Tags: none

请先后发表评论
  • 最新评论
  • 总共0条评论