async-request / async-request
Asynchronous cURL library for PHP with reasonable API
Installs: 51 806
Dependents: 1
Suggesters: 0
Security: 0
Stars: 24
Watchers: 5
Forks: 5
Open Issues: 2
Requires
- php: >=7.1.0
- lib-curl: *
Requires (Dev)
- phpunit/phpunit: 5.6.*
This package is not auto-updated.
Last update: 2025-01-18 21:55:23 UTC
README
Asynchronous cURL library for PHP with reasonable API.
PHP is by default single-thread language but when it comes to HTTP requests it is not very convenient to do them in serial. cURL implementation in PHP offers functions for multi requests but with terrible C-style API. This library wraps those functions into modern object-oriented event-driven API.
Requirements
async-request/async-request version 1.x requires PHP 7.1+ with cUrl extension enabled.
If you are using PHP5.4+ you can use async-request/async-request version 0.x.
Installation
You can easily install the newest version using Composer:
composer require async-request/async-request
Simple example
$urls = [ 'http://www.example.com', 'http://www.example.org', ]; $asyncRequest = new AsyncRequest\AsyncRequest(); foreach ($urls as $url) { $request = new AsyncRequest\Request($url); $asyncRequest->enqueue($request, function(AsyncRequest\Response $response) { echo $response->getBody() . "\n"; }); } $asyncRequest->run();
Advanced features
You can specify number of requests that can run in parallel:
$asyncRequest->setParallelLimit(5);
You can add other requests in callback function:
$callback = function(AsyncRequest\Response $response, AsyncRequest\AsyncRequest $asyncRequest) { $asyncRequest->enqueue(new AsyncRequest\Request('http://www.example.com')); };
You can specify priority of each request and requests with higher priority will be called first:
$asyncRequest->enqueueWithPriority(10, $request, $callback);
If you want to use some cURL options, it is as easy as this:
$request = new AsyncRequest\Request($url); $request->setOption(CURLOPT_POST, true);
And if you want some special behavior or some additional data in Response
, you can always create your own Request
object by implementing IRequest
interface.