PHP:cURL error 60: SSL certificate unable to get local issuer certificate

时间:2020-12-13 12:00:46   收藏:0   阅读:30

导致该问题的原因在于没有配置curl.cainfo,该配置位于php.ini中。

解决方案:

1)下载cacert.pem

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

2)配置php.ini

[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.
curl.cainfo =E:\phpstudy\PHPTutorial\php\php-7.2.1-nts\cacert.pem

原文:https://www.cnblogs.com/xiaofeilin/p/14128025.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!