PHP code example of webclient / ext-cookie
1. Go to this page and download the library: Download webclient/ext-cookie 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/ */
webclient / ext-cookie example snippets
use Psr\Http\Client\ClientInterface;
use Psr\Http\Message\RequestInterface;
use Webclient\Extension\Cookie\CookieClientDecorator;
use Webclient\Extension\Cookie\Cookie\Storage;
/**
* @var ClientInterface $client Your PSR-18 HTTP Client
* @var Storage $storage Cookies storage. You may extends this class for implements your storage
*/
$http = new CookieClientDecorator($client, $storage);
/** @var RequestInterface $request */
$response = $http->sendRequest($request);