gpt4 book ai didi

php - 如何使用 Goutte 在 laravel 5.2 中进行抓取?

转载 作者:可可西里 更新时间:2023-11-01 00:00:05 25 4
gpt4 key购买 nike

我是 Laravel 5.2 的新手,我想抓取一个网页。我开始知道可以使用 Goutte 来完成.并且不知道如何使用它。

我已经安装了 Laravel 和 Goutte,但是如何使用呢?如何设置Controller、路由和所有需要的东西?

最佳答案

我找到了答案。我只是将 url 添加到路由并创建了 Controller

Route::resource('scrape','WebScraperController@index');

WebScraperController 内部

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Goutte\Client;
use Symfony\Component\DomCrawler\Crawler;
use App\Http\Requests;
class WebScraperController extends Controller
{
public function index()
{
// Create a new Goutte client instance
$client = new Client();

// Hackery to allow HTTPS
$guzzleclient = new \GuzzleHttp\Client([
'timeout' => 60,
'verify' => false,
]);

// Create DOM from URL or file
$html = file_get_html('https://www.facebook.com');

// Find all images
foreach ($html->find('img') as $element) {
echo $element->src . '<br>';
}

// Find all links
foreach ($html->find('a') as $element) {
echo $element->href . '<br>';
}
}
}

关于php - 如何使用 Goutte 在 laravel 5.2 中进行抓取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35534181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com