PHP cURL 错误代码 60:SSL 证书问题
在 Windows 上使用 WAMP 配置 PHP 环境时,您可能会遇到错误代码 60:使用 Amazon PHP SDK:
<code class="php">Fatal error: Uncaught exception 'cURL_Exception' with message 'cURL resource: Resource id #10; cURL error: SSL certificate problem: unable to get local issuer certificate (cURL error code 60). See http://curl.haxx.se/libcurl/c/libcurl-errors.html for an explanation of error codes.' in...</code>
原因:
由于用于验证远程端点的 SSL 证书存在问题而发生此错误。
故障排除:
1.验证您的 php.ini 设置:
确保您已将正确的 CA 捆绑包文件添加到 php.ini 文件中:
curl.cainfo = C:\Windows\ca-bundle.crt
如果 CA 捆绑包不存在或者无效,cURL 将无法验证 SSL 证书。
2.正确使用curl.cainfo设置:
curl.cainfo设置应指向CA捆绑包的路径。通常,它是包含多个证书的 PEM 编码文件。
3.下载受信任的根证书捆绑包:
使用以下 URL 中的受信任的根证书捆绑包:
https://curl.haxx.se/ca/cacert.pem
4.更新 php.ini 设置:
下载证书包后,使用正确的路径更新 php.ini 文件:
curl.cainfo = "path_to_cert\cacert.pem"
5.重新启动 WAMP:
更新 php.ini 设置后,重新启动 WAMP 服务以使更改生效。
以上是如何解决 PHP cURL 错误代码 60:SSL 证书问题?的详细内容。更多信息请关注PHP中文网其他相关文章!