file_get_contents() 函數是用於將文件的內容讀入到一個字符串中,是讀取文件內容經常使用的函數之一。php
可是有時在服務器上使用file_get_contents() 函數請求https 協議的url文件時會報錯誤,沒法正確讀取文件內容,服務器
查看log日誌,日誌內容相似以下:curl
PHP Warning: file_get_contents(): Failed to enable crypto in ...... PHP Warning: file_get_contents......: failedream: operation failed in ...... PHP Warning: file_get_contents(): SSL operatwith code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verin ......
服務器未正確配置好https證書函數
方法一:url
下載https證書到服務器spa
服務器 下載這個證書,http://curl.haxx.se/ca/cacert.pem
php.ini 配置
openssl.cafile = "/etc/ssl/certs/cacert.pem"//你實際下載證書的路徑
重啓 php 便可日誌
方法二:code
使用cURL 函數處理 https 的參數,獲取文件內容blog
<?php 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("https://xxx.xxx.xxx")); ?>
引用:https://stackoverflow.com/questions/14078182/openssl-file-get-contents-failed-to-enable-cryptossl
方法三:
使file_get_contents()函數跳過https驗證
$stream_opts = [ "ssl" => [ "verify_peer"=>false, "verify_peer_name"=>false, ] ]; $response = file_get_contents("https://xxx.xxx.xxx",false, stream_context_create($stream_opts));
開發中建議使用cURL 函數替代file_get_contents()函數。