http\Client http\Client::configure(array $configuration)

Configure the client's low level options.

NOTE:
This method has been added in v2.3.0.

Params:

Returns:

Throws:

Example:


<?php

$client 
= new http\Client("curl");
$client->configure([
    
"max_host_connections" => 8,
    
"pipelining" => true,
]);

?>