今天有用户调用一个curl方法时,遇到如下的错误,查找了一些资料终于解决了。解决方法记录一下,留着自己以后自已查阅用。
cURL error 60: SSL certificate problem: unable to get local issuer certificate
接管错误输出后,可能如下显示
cURL error 60 错误 curl code ERROR 60错误
curl 配置中开启了证书校验
就是使用了以下配置
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
方法1:
curl 关闭证书校验 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
方法2:
使用 cacert.pem
下载地址:
https://curl.haxx.se/ca/cacert.pem
在php的php.ini配置文件引用此文件
例,代码:
curl.cainfo = "D:phpcacert.pem"