实例化后设置Guzzle 5 Config

时间:2018-09-06 16:27:37

标签: php laravel guzzle

当前,我们将Guzzle v5配置参数发送到GuzzleClient的构造函数。仅作为示例,例如:

$this->client = new GuzzleClient(['verify' => false ]);

有没有一种方法可以实例化Guzzle对象而无需发送构造函数参数?然后再设置配置,但是在实际调用/操作之前将其设置为.post或.get等吗?像这样:

$this->client = new GuzzleClient();
$this->client->config = ['verify' => false ];
...

谢谢。

0 个答案:

没有答案