v1.1.3
版本发布时间: 2019-06-04 14:40:30
Yurunsoft/Guzzle-Swoole最新发布版本:v2.2.4(2022-01-10 16:47:44)
现在代理支持以下两种形式,之前只支持第二种
$client->request('GET', '/', ['proxy' => 'http://localhost:8125']);
$client->request('GET', '/', [
'proxy' => [
'http' => 'tcp://localhost:8125', // Use this proxy with "http"
'https' => 'tcp://localhost:9124', // Use this proxy with "https",
'no' => ['.mit.edu', 'foo.com'] // Don't use a proxy with these
]
]);