php file_get_contents(): SSL operation failed with code 1. OpenSSL Error message.....
墨初 编程开发 403阅读
在调试php脚本代码时,发现使用 file_get_contents() 函数请求HTTPS的网址时抛出了错误,其报错代码为“file_get_contents(): SSL operation failed with code 1. OpenSSL Error message...”,查了一下相关的资料,发现在是服务器上未正确的配置ssl证书,导致了请求错误。
解决方法:
方法1:
直接对 file_get_contents 函数进行设置,让 file_get_contents 函数跳过https验证,暂时解决问题
例:
# 73so.com $url = '请求地址'; $arrContextOptions=array( "ssl"=>array( "verify_peer"=>false, "verify_peer_name"=>false, "allow_self_signed"=>true, ), ); $response = file_get_contents($url, false, stream_context_create($arrContextOptions));
方法3:
使用curl来替代 file_get_contents 函数来使用!
例:
# 73so.com $url = '请求地址'; function getSSLPage($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_SSLVERSION,3); $result = curl_exec($ch); curl_close($ch); return $result; } var_dump(getSSLPage($url));
方法1:
这种方法可以永久的解决此问题,推荐是用此方法!
(1)、下载证书,http://curl.haxx.se/ca/cacert.pem
(2)、证书上传到服务器,并记录好上传的路径
(3)、打开php的配置文件,php.ini
(4)、修改 openssl.cafile 的配置的值为上传的证书地址即可
例:
openssl.cafile = "/etc/ssl/certs/cacert.pem"
(5)、重启 php 即可