특정 HTTPS URL과 함께 file_get_contents()를 사용할 때 암호화를 활성화하지 못했습니다.
https와 같은 특정 HTTPS URL에서 콘텐츠를 검색하려고 할 때 //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
해결책:
문제는 다음에서 발생합니다. PHP 설정에서 잠재적으로 지원되지 않는 SSLv3 프로토콜을 사용하는 대상 웹사이트.
옵션 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!