现象
Win7 执行CURL请求,如果是https站点,直接报错如下,而在macOS上没有这种情况。
curl error 60: ssl certificate problem: unable to get local issuer certificate
解决办法
去下载一个适合于windows的证书,然后修改php.ini中的值改为
;;;;;;;;;;;;;;;;;;;;
; php.ini Options ;
;;;;;;;;;;;;;;;;;;;;
curl.cainfo = "d:/ssl/cacert.pem"
下载地址
https://curl.haxx.se/docs/caextract.html
重启web服务器 Author coconets@163.com 。