在特定HTTPS URL 中使用file_get_contents() 時無法啟用加密
嘗試從某些HTTPS URL(例如https)擷取內容時://eresearch.fidelity.com/,使用file_get_contents(),您可能會遇到以下錯誤:
Warning: file_get_contents(): SSL: crypto enabling timeout Warning: file_get_contents(): Failed to enable crypto Warning: file_get_contents(): failed to open stream: operation failed Fatal error: Maximum execution time of 30 seconds exceeded
解決方案:
問題產生於使用SSLv3 協定的目標網站,您的PHP 設定可能不支援該協定。
選項1:使用cURL 指定SSL 版本
使用cURL 創建函數:
<code class="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); // Specify SSL version 3 $result = curl_exec($ch); curl_close($ch); return $result; }</code>
用法示例:
<code class="php">var_dump(getSSLPage("https://eresearch.fidelity.com/eresearch/evaluate/analystsOpinionsReport.jhtml?symbols=api"));</code>
選項2:在Windows 中包含根憑證(可選)
在Windows 中,您可能會遇到缺少存取根憑證。要解決此問題,請按照以下步驟:
<code class="php">curl_setopt($ch, CURLOPT_CAINFO, __DIR__ . "/certs/cacert.pem"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); // True: verify certificates</code>
以上是如何在使用具有特定 HTTPS URL 的 file_get_contents() 時啟用加密?的詳細內容。更多資訊請關注PHP中文網其他相關文章!