PHP code example of bentools / guzzle-throttle-middleware
1. Go to this page and download the library: Download bentools/guzzle-throttle-middleware library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bentools / guzzle-throttle-middleware example snippets
namespace App\RequestMatcher;
use BenTools\Psr7\RequestMatcherInterface;
use Psr\Http\Message\RequestInterface;
class ExampleOrgRequestMatcher implements RequestMatcherInterface
{
/**
* @inheritDoc
*/
public function matchRequest(RequestInterface $request)
{
return false !== strpos($request->getUri()->getHost(), 'example.org');
}
}
use App\RequestMatcher\ExampleOrgRequestMatcher;
use BenTools\GuzzleHttp\Middleware\Storage\Adapter\ArrayAdapter;
use BenTools\GuzzleHttp\Middleware\ThrottleConfiguration;
use BenTools\GuzzleHttp\Middleware\ThrottleMiddleware;
use GuzzleHttp\Client;
use GuzzleHttp\HandlerStack;
ationInSeconds, 'example')
);
$stack->push($middleware, 'throttle');
$client = new Client([
'handler' => $stack,
]);
$client->get('http://www.example.org'); // Will be executed immediately
$client->get('http://www.example.org'); // Will be executed in 1 second
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.