php-guzzleHow to keep alive with Guzzle in PHP?
Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services. To keep alive with Guzzle in PHP, you can use the Connection: keep-alive
header.
$client = new GuzzleHttp\Client();
$response = $client->request('GET', 'http://example.com', [
'headers' => [
'Connection' => 'keep-alive'
]
]);
The output of the above code will be an instance of GuzzleHttp\Psr7\Response
class.
Code explanation
$client = new GuzzleHttp\Client();
- This creates a new instance of the Guzzle client.$response = $client->request('GET', 'http://example.com', [
- This sends a GET request to the specified URL.'headers' => [
- This is an array of headers to be sent with the request.'Connection' => 'keep-alive'
- This sets theConnection
header tokeep-alive
.]);
- This closes the array of headers and the request options.
Helpful links
More of Php Guzzle
- How to use PHP Guzzle to make a batch request?
- How to set a user agent in PHP Guzzle?
- How to set a timeout for a request with PHP Guzzle?
- How to use Promises with PHP Guzzle (with an example)?
- How to send multipart requests with Guzzle in PHP?
- How to install PHP Guzzle without Composer?
- How to use cookies with Guzzle in PHP?
- How to add an authorization header bearer in PHP Guzzle?
- How to stream with PHP Guzzle?
- What version of PHP is required for Guzzle?
See more codes...