在特定 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中文网其他相关文章!