PHP code example of zoilomora / editthiscookie-for-guzzle

1. Go to this page and download the library: Download zoilomora/editthiscookie-for-guzzle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

zoilomora / editthiscookie-for-guzzle example snippets



declare(strict_types=1);

$cookieFile = './var/cookies.json';
$client = new \GuzzleHttp\Client([
    'cookies' => new \ZoiloMora\EditThisCookie\Guzzle\FileCookieJar($cookieFile),
]);