개발자의 끄적끄적

[php] file_get_contents() ssl operation failed with code 1. openssl 본문

개발/php

[php] file_get_contents() ssl operation failed with code 1. openssl

효벨 2020. 4. 1. 02:00
728x90
반응형

[php] file_get_contents() ssl operation failed with code 1. openssl

 

file_get_contents 를 이용해서 데이터를 가져오다보면

openssl 이슈가 생기곤 합니다.

 

여러가지 해결 방법이 있겠지만,

file_get_contents() ssl operation failed with code 1. openssl

이런 이슈가 있을때 아래 방법으로 해결이 되어서 공유하고자 올립니다!

    $arrContextOptions=array(
        "ssl"=>array(
            "verify_peer"=>false,
            "verify_peer_name"=>false,
        ),
    );  
    file_get_contents("url", false, stream_context_create($arrContextOptions)); 

 

참고들 하시구요! 도움들 되시길 바랍니다!

반응형

'개발 > php' 카테고리의 다른 글

[PHP] dirname(__FILE__)  (0) 2020.04.06
[php] aws s3 사용법 [펌]  (0) 2020.04.03
[php] foreach key value 사용하기  (0) 2020.03.21
[php] HTTP 헤더에서 PHP 정보 없애기  (0) 2020.03.21
[php] PHPExcel 에서 숫자 출력  (0) 2020.03.17
Comments