Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- JavaScript
- 공모주 청약
- 자바
- html
- linux
- 오라클
- codeigniter
- Oracle
- 6월 공모주 청약 일정
- 주식 청약 일정
- Stock ipo
- Stock
- jquery
- css
- 자바스크립트
- 7월 공모주 청약 일정
- SQL
- MYSQL
- 코드이그나이터
- IPO
- 공모주 청약 일정
- 제이쿼리
- 주식 청약
- php
- 공모주
- 주식
- 맥
- 리눅스
- Eclipse
- java
Archives
- Today
- Total
개발자의 끄적끄적
[php] file_get_contents(): SSL operation failed with code 1 에러 해결 방법 본문
728x90
반응형
[php] file_get_contents(): SSL operation failed with code 1 에러 해결 방법
php 에서
html contents 를 가져오고자 할때
file_get_contents 를 많이 사용합니다!
그중에서
아래와 같이 SSL 관련 에러가 나는 경우가 있습니다!
PHP Warning: file_get_contents(): SSL operation failed with code 1
http 도메인은 잘 가져와지는데 https 도메인의 데이터를 가져오고자 할때 위와 같은 에러가 나는데요!
그럴때는 아래와 같이 옵션을 추가해서 호출하시면 됩니다!
$context=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
위 옵션을 추가한 사용법은 아래와 같습니다!
$html = file_get_contents(URL, false, stream_context_create($context));
참고들 하세요!
반응형
'개발 > php' 카테고리의 다른 글
[php/codeigniter4] php 8.2 & codeigniter 4 Deprecated: Creation of dynamic property 에러 해결방법 (0) | 2023.07.19 |
---|---|
[php] post_max_size 최대값과 주의사항 (0) | 2023.07.15 |
[php] 엑셀 시트 여러개 생성하는 방법 / php excel creatSheet example (0) | 2023.06.24 |
[php] php 컴포저 업데이트 방법 / php composer update & rollback example (0) | 2023.06.12 |
[php/codeigniter] 코드이그나이터 다중도메인 접근 설정방법 (0) | 2023.06.03 |
Comments