如何从以下实例访问变量“ verify”?

时间:2019-01-08 12:15:17

标签: php guzzle guzzle6 omnipay

我有想要访问特定变量的实例的响应

我使用箭头运算符尝试了不同的组合。

Client {#445 ▼
  -httpClient: Client {#460 ▼
   -client: Client {#469 ▼
   -config: array:7 [▼
    "handler" => HandlerStack {#459 ▶}
    "allow_redirects" => array:5 [▶]
    "http_errors" => true
    "decode_content" => true
    "verify" => true
    "cookies" => false
    "headers" => array:1 [▼
      "User-Agent" => "GuzzleHttp/6.3.3 curl/7.50.1 PHP/7.0.10"
    ]
  ]
}

我想访问处理程序,验证和cookie之类的数组变量。

1 个答案:

答案 0 :(得分:0)

您应该能够使用'$ client-> getConfig()'调用(如果$client是您的\GuzzleHttp\Client实例)从Guzzle Client获取配置。

在此处查看代码:https://github.com/guzzle/guzzle/blob/6.3.3/src/Client.php#L134