概述
当我尝试在我的网站中读取一些HTTPS网址时遇到问题.
如果使用“ http”,则没有问题(使用file_get_contents和curl),但是当我用“ https”替换“ http”时,这些方法不起作用.
我收到一些错误:
failed to open stream: operation failed occured
Failed to enable crypto occured
SSL operation failed with code 1. OpenSSL Error messages: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
在phpinfo()中,我得到了:
openssl
OpenSSL support enabled
OpenSSL Version OpenSSL 0.9.8c 05 Sep 2006
如果您有任何想法.
感谢帮助.
(注:在我的情况下,get_headers()不能与https一起使用)
更多信息:
file_get_contents:
$data = file_get_contents("https://ssl10.ovh.net/~fyprbqhq/_perso/facebook.myclimb/test.php");
卷曲:
$curl_handle = curl_init();
curl_setopt($curl_handle, CURLOPT_URL, "http://ssl10.ovh.net/~fyprbqhq/_perso/facebook.myclimb/test.php");
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT,2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl_handle, CURLOPT_SSL_VERIFYPEER, false);
$data = curl_exec($curl_handle);
curl_close($curl_handle);
解决方法:
从收到的错误(SSL23_GET_SERVER_HELLO:未知协议)来看,这几乎肯定是由服务器具有比客户端新的SSL版本引起的.
当您使用0.9.8c时,服务器可能使用的版本> = 1.0.0
标签:https,php
来源: https://codeday.me/bug/20191101/1987414.html
最后
以上就是健壮酒窝为你收集整理的file.php https,使用HTTPS链接和php方法(file_get_contents,getimagesize)的全部内容,希望文章能够帮你解决file.php https,使用HTTPS链接和php方法(file_get_contents,getimagesize)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复