Join 4,000+ others and never miss out on new tips, tutorials, and more.
Latest version:
pecl install openswoole-22.1.2 | composer require openswoole/core:22.1.5
<?php OpenSwoole\Coroutine\Http\Client->setDefer(bool $defer = false)
If the Client should be set in defer mode or not.
None
Set the client to be in defer mode, allow the other coroutine enabled requests to execute when waiting for the result. This improves concurrency and wastes less time when waiting for connections to return data.
<?php
use OpenSwoole\Coroutine\HTTP\Client;
co::run(function()
{
$client = new Client('127.0.0.1', 80);
$client->setHeaders([
'Host' => "localhost",
"User-Agent" => 'Chrome/49.0.2587.3',
'Accept' => 'text/html,application/xhtml+xml,application/xml',
'Accept-Encoding' => 'gzip',
]);
$client->set([ 'timeout' => 1]);
// Other coroutines can execute while waiting for requests
$client->setDefer(true);
$client->get('/index.php');
var_dump($client->body);
$cli->close();
});