Copied!
  • final
CloneableInstantiable
Constants
public GuzzleHttp\ClientInterface::MAJOR_VERSION = 7
 

The Guzzle major version.

Methods
public __call( $method, $args)
 
  • param string $method
  • param array $args
  • return \PromiseInterface|\ResponseInterface
  • deprecated Client::__call will be removed in guzzlehttp/guzzle:8.0.
public __construct(array $config = [])
 

Clients accept an array of constructor parameters.

Here's an example of creating a client using a base_uri and an array of default request options to apply to each request:

$client = new Client([
    'base_uri'        => 'http://www.foo.com/1.0/',
    'timeout'         => 0,
    'allow_redirects' => false,
    'proxy'           => '192.168.16.1:10'
]);

Client configuration settings include the following options:

  • handler: (callable) Function that transfers HTTP requests over the wire. The function is called with a Psr7\Http\Message\RequestInterface and array of transfer options, and must return a GuzzleHttp\Promise\PromiseInterface that is fulfilled with a Psr7\Http\Message\ResponseInterface on success. If no handler is provided, a default handler will be created that enables all of the request options below by attaching all of the default middleware to the handler.
  • base_uri: (string|UriInterface) Base URI of the client that is merged into relative URIs. Can be a string or instance of UriInterface.
  • **: any request option
  • param array $config Client configuration settings.
  • see \GuzzleHttp\RequestOptionsfor a list of available request options.
public delete( $uri, array $options = []) : Psr\Http\Message\ResponseInterface
 

Create and send an HTTP DELETE request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
  • throws \GuzzleException
public deleteAsync( $uri, array $options = []) : GuzzleHttp\Promise\PromiseInterface
 

Create and send an asynchronous HTTP DELETE request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well. Use an array to provide a URL template and additional variables to use in the URL template expansion.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
public get( $uri, array $options = []) : Psr\Http\Message\ResponseInterface
 

Create and send an HTTP GET request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
  • throws \GuzzleException
public getAsync( $uri, array $options = []) : GuzzleHttp\Promise\PromiseInterface
 

Create and send an asynchronous HTTP GET request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well. Use an array to provide a URL template and additional variables to use in the URL template expansion.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
public getConfig(?string $option = NULL)
 

Get a client configuration option.

These options include default request options of the client, a "handler" (if utilized by the concrete client), and a "base_uri" if utilized by the concrete client.

  • param string|null $option The config option to retrieve.
  • return mixed
  • deprecated Client::getConfig will be removed in guzzlehttp/guzzle:8.0.
public head( $uri, array $options = []) : Psr\Http\Message\ResponseInterface
 

Create and send an HTTP HEAD request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
  • throws \GuzzleException
public headAsync( $uri, array $options = []) : GuzzleHttp\Promise\PromiseInterface
 

Create and send an asynchronous HTTP HEAD request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well. Use an array to provide a URL template and additional variables to use in the URL template expansion.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
public patch( $uri, array $options = []) : Psr\Http\Message\ResponseInterface
 

Create and send an HTTP PATCH request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
  • throws \GuzzleException
public patchAsync( $uri, array $options = []) : GuzzleHttp\Promise\PromiseInterface
 

Create and send an asynchronous HTTP PATCH request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well. Use an array to provide a URL template and additional variables to use in the URL template expansion.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
public post( $uri, array $options = []) : Psr\Http\Message\ResponseInterface
 

Create and send an HTTP POST request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
  • throws \GuzzleException
public postAsync( $uri, array $options = []) : GuzzleHttp\Promise\PromiseInterface
 

Create and send an asynchronous HTTP POST request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well. Use an array to provide a URL template and additional variables to use in the URL template expansion.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
public put( $uri, array $options = []) : Psr\Http\Message\ResponseInterface
 

Create and send an HTTP PUT request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
  • throws \GuzzleException
public putAsync( $uri, array $options = []) : GuzzleHttp\Promise\PromiseInterface
 

Create and send an asynchronous HTTP PUT request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well. Use an array to provide a URL template and additional variables to use in the URL template expansion.

  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply.
public request(string $method, $uri = '', array $options = []) : Psr\Http\Message\ResponseInterface
 

Create and send an HTTP request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well.

  • param string $method HTTP method.
  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply. See \GuzzleHttp\RequestOptions.
  • throws \GuzzleException
public requestAsync(string $method, $uri = '', array $options = []) : GuzzleHttp\Promise\PromiseInterface
 

Create and send an asynchronous HTTP request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well. Use an array to provide a URL template and additional variables to use in the URL template expansion.

  • param string $method HTTP method
  • param string|\UriInterface $uri URI object or string.
  • param array $options Request options to apply. See \GuzzleHttp\RequestOptions.
public send(Psr\Http\Message\RequestInterface $request, array $options = []) : Psr\Http\Message\ResponseInterface
 

Send an HTTP request.

  • param array $options Request options to apply to the given request and to the transfer. See \GuzzleHttp\RequestOptions.
  • throws \GuzzleException
public sendAsync(Psr\Http\Message\RequestInterface $request, array $options = []) : GuzzleHttp\Promise\PromiseInterface
 

Asynchronously send an HTTP request.

  • param array $options Request options to apply to the given request and to the transfer. See \GuzzleHttp\RequestOptions.
public sendRequest(Psr\Http\Message\RequestInterface $request) : Psr\Http\Message\ResponseInterface
 

The HttpClient PSR (PSR-18) specify this method.

    Properties
    private $config = NULL
     
    • var array Default request options
    Methods
    private applyOptions(Psr\Http\Message\RequestInterface $request, array $options) : Psr\Http\Message\RequestInterface
     

    Applies the array of request options to a request.

    private buildUri(Psr\Http\Message\UriInterface $uri, array $config) : Psr\Http\Message\UriInterface
    private configureDefaults(array $config) : void
     

    Configures the default options for a client.

    private invalidBody() : GuzzleHttp\Exception\InvalidArgumentException
     

    Return an InvalidArgumentException with pre-set message.

    private prepareDefaults(array $options) : array
     

    Merges default options into the array.

    • param array $options Options to modify by reference
    private transfer(Psr\Http\Message\RequestInterface $request, array $options) : GuzzleHttp\Promise\PromiseInterface
     

    Transfers the given request and applies request options.

    The URI of the request is not modified and the request options are used as-is without merging in default options.

    • param array $options See \GuzzleHttp\RequestOptions.
    © 2024 Bruce Wells
    Search Namespaces \ Classes
    Configuration