<?php
Swoole\Coroutine\Http\Client->setMethod(string $method = 'GET')
The HTTP method of the reqeust.
Set the HTTP method of the request.
<?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->setMethod('GET');
$cli->get('/index.php');
echo $cli->body;
$cli->close();
});