当前,我们将Guzzle v5配置参数发送到GuzzleClient的构造函数。仅作为示例,例如:
$this->client = new GuzzleClient(['verify' => false ]);
有没有一种方法可以实例化Guzzle对象而无需发送构造函数参数?然后再设置配置,但是在实际调用/操作之前将其设置为.post或.get等吗?像这样:
$this->client = new GuzzleClient();
$this->client->config = ['verify' => false ];
...
谢谢。