PHP使用CURL 出现Uncaught exception 'RuntimeException' with message 'CURL connection

在Win下使用PHP CURL 出现 Uncaught exception 'RuntimeException' with message 'CURL connection,是因为没有安装证书。

1. 安装cURL.
1.下载Certficate Authority Public Keys,网址http://curl.haxx.se/ca/cacert.pem (右键另存为即可).
2.把 cacert.pem 重命名为 curl-ca-bundle.crt
3.将curl-ca-bundle.crt移动到Windows系统环境目录,默认是C:\Windows\System32.
或者
4.其实重点在这里


当我把证书放在C:\Windows\System32下面并没起到什么效果,
所以我就直接在php.ini中,找到
curl.cainfo = 证书路径(比如 D:\curl-ca-bundle.crt),重启Apache就ok了

2. 测试cURL.
打开命令行,输入如下命令.
curl -L http://www.google.com
curl -L https://www.google.com
运行这2个命令,如果都能看到Google的HTML代码,说明cURL已经安装成功.*

你可能感兴趣的:(PHP使用CURL 出现Uncaught exception 'RuntimeException' with message 'CURL connection)