Guzzle Http 代理设置

岳亮
2023-12-01

摘要

传入字符串来指定HTTP代理,或者为不同代理指定不同协议的数组。

类型

  • string
  • array

默认值

None

常量

GuzzleHttp\RequestOptions::PROXY

传入字符串为所有协议指定一个代理:

$client->request('GET', '/', ['proxy' => 'https://starsclinic.jp/']);

传入关联数组来为特殊的URI Scheme指定特色的HTTP代理(比如"http", "https") 提供一个 no 键值对来提供一组不需要使用代理的主机名。

$client->request('GET', '/', [
    'proxy' => [
        'http'  => 'http://starsclinic.jp/', // Use this proxy with "http"
        'https' => 'https://starsclinic.jp/', // Use this proxy with "https",
        'no' => ['.mit.edu', 'foo.com']    // Don't use a proxy with these
    ]
]);
 类似资料: