file.php https,使用HTTPS链接和php方法(file_get_contents,getimagesize)
當我嘗試在我的網站中讀取一些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)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql transaction用法,
- 下一篇: oracle 获取系统年 月,Oracl