12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace GuzzleHttp\Handler;
- use GuzzleHttp\Promise\PromiseInterface;
- use Psr\Http\Message\RequestInterface;
- class CurlHandler
- {
-
- private $factory;
-
- public function __construct(array $options = [])
- {
- $this->factory = $options['handle_factory']
- ?? new CurlFactory(3);
- }
- public function __invoke(RequestInterface $request, array $options): PromiseInterface
- {
- if (isset($options['delay'])) {
- \usleep($options['delay'] * 1000);
- }
- $easy = $this->factory->create($request, $options);
- \curl_exec($easy->handle);
- $easy->errno = \curl_errno($easy->handle);
- return CurlFactory::finish($this, $easy, $this->factory);
- }
- }
|