缺点代码

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:

phpcurl报错php cURL error 60毛病的解决办法 PHP

curl 关闭证书校验curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

方法2:

利用 cacert.pem

下载地址:

https://curl.haxx.se/ca/cacert.pem

在php的php.ini配置文件引用此文件

例,代码:

curl.cainfo = \"大众D:\php\cacert.pem\"大众