The BrowserKit Component別々のGoutte\ClientにCookie情報を引き継いで渡したい composer.json { "require": { "fabpot/goutte": "^3.2" } } Cookie 정보 확인 require 'vendor/autoload.php'; use Goutte\Client; $url = 'https://github.com/login'; $client = new \Goutte\Client(); $client->setClient(new \GuzzleHttp\Client([ 'timeout' => 90, 'verify' => false, 'cookie'=>true ])); $crawler = $client->request('GET', $url); echo $cra..