<?php
Swoole\Coroutine\Http\Client->getHeaders()
Get the HTTP headers returned from the remote server.
<?php
use Swoole\Coroutine\HTTP\Client;
Co\run(function() {
$cli = new Client('127.0.0.1', 80);
$cli->setHeaders([
'Host' => "localhost",
"User-Agent" => 'Chrome/49.0.2587.3',
'Accept' => 'text/html,application/xhtml+xml,application/xml',
'Accept-Encoding' => 'gzip',
]);
$cli->set([ 'timeout' => 1]);
$cli->setDefer(TRUE);
$cli->get('/index.php');
var_dump($cli->getHeaders());
$cli->close();
});