标签:ssl证书 需要 false 构造 decode ons response url string
guzzle 发起http请求与https请求的区别,发起https请求时,需要在构造函数中传入一个配置项,
具体代码如下:
//发起请求 $client = new Client([‘timeout‘ => 5, ‘verify‘ => false]); $response=$client->get($url,); $body = (string)$response->getBody(); $arr = json_decode($body, true);
这个配置项就是,‘verify‘=>false ,添加此配置项 即不检查 ssl证书。
标签:ssl证书 需要 false 构造 decode ons response url string
原文地址:https://www.cnblogs.com/zqblog1314/p/12822101.html