php-guzzleHow to use cookies with Guzzle in PHP?
Cookies can be used with Guzzle in PHP by setting the Cookie
header in the request.
$client = new GuzzleHttp\Client();
$response = $client->request('GET', 'http://httpbin.org/cookies', [
'headers' => [
'Cookie' => 'foo=bar; bar=baz'
]
]);
The output of the above code will be a response object containing the cookies sent in the request.
Code explanation
$client = new GuzzleHttp\Client();
- This creates a new Guzzle client object.'headers' => [ 'Cookie' => 'foo=bar; bar=baz' ]
- This sets theCookie
header in the request with the cookiesfoo=bar
andbar=baz
.$response = $client->request('GET', 'http://httpbin.org/cookies', [ ... ])
- This sends the request to the specified URL with theCookie
header set.
Helpful links
More of Php Guzzle
- How to set a user agent in PHP Guzzle?
- How to set a timeout for a request with PHP Guzzle?
- How to add an SSL certificate to a request with PHP Guzzle?
- How to handle a RequestException with PHP Guzzle?
- How to make an asynchronous send with PHP Guzzle?
- How to convert a response to an array with PHP Guzzle?
- What version of PHP is required for Guzzle?
- How to make HTTP request with PHP Guzzle?
- How to stream with PHP Guzzle?
- How to troubleshoot cURL error 60 with Guzzle in PHP?
See more codes...