Download the PHP package cvweiss/guzzler without Composer
On this page you can find all versions of the php package cvweiss/guzzler. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cvweiss/guzzler
More information about cvweiss/guzzler
Files in cvweiss/guzzler
Package guzzler
Short Description A utility that allows multiples sequences of calls with execution of code between each sequence.
License MIT
Informations about the package guzzler
Guzzler
Guzzler utilizes Guzzle's many powerful tools and provides a simple wrapper for performing asynchronous requests in PHP. Guzzle uses curl as the backend for making all requests.
Guzzler Basics
To initiate:
To perform a call:
To perform a call you will need two functions: one for successful requests, and another for failed requests. As seen in the example above, you must pass the function names as strings.
To allow guzzler to iterate and process existing requests:
To finish all guzzler calls:
Guzzler Advanced
You can modify the number of concurrent requests as well as the maximum time Guzzler will wait between calls. The wait takes into consideration the time it took for a call to come back and be processed.
Guzzler lets you define the user agent once as well. The default is "cvweiss/guzzler"
Guzzler also lets you define curl options initially. The default is [CURLOPT_FRESH_CONNECT => false]
Guzzlers also lets you define curl options with every call, just embed it within the headers with the curl
key.
Guzzler also makes it easier to pass parameters to the functions that are called on fail or success.
Guzzler also allows you to make additional guzzler calls within the functions.
Guzzler makes it easy to POST with a body included:
Guzzler makes it easy to retrieve the headers from the response. Keep in mind, all header's keys are lowercased.
Guzzler makes it very easy to add headers to the request.
Guzzler will verify that the functions specified to be called actually exist, so if you typo you'll get an immediate notification before the request is actually made.
Guzzler makes it easy to implement etags. Pass $redis, which can be anything really as long as it implements get and setex properly.
Guzzler Example
Now that you have fully read the manual, here is a complete example: