-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Closed
Labels
in progressMaintainers are working on thisMaintainers are working on this
Description
<?php
go(function(){
$cli = new Swoole\Coroutine\Http\Client('ip.cn', 443, true);
$cli->set([
'http_proxy_host' => '127.0.0.1',
'http_proxy_port' => '8580',
]);
$cli->setHeaders([
'Host' => 'ip.cn',
'User-Agent' => 'GuzzleHttp/6.3.3 curl/7.47.0 PHP/7.3.6-1+ubuntu16.04.1+deb.sury.org+1',
]);
$cli->get('/');
var_dump($cli->body, $cli->errCode);
$cli->close();
});
Metadata
Metadata
Assignees
Labels
in progressMaintainers are working on thisMaintainers are working on this