<?php
Swoole\Coroutine\Http\Client->setData(string $data)
The data to be sent for the HTTP reqeust.
Set the cookies for the HTTP 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("POST");
$cli->setData(http_build_query(['a'=> 123,'b'=>"hey"]);
$cli->get('/index.php');
echo $cli->body;
$cli->close();
});