guzzle 发起 https 请求 报错解决方法

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证书。

posted @ 2020-05-03 15:28  养猪至富  阅读(4825)  评论(0编辑  收藏  举报