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
- css
- Stock ipo
- 코드이그나이터
- java
- 7월 공모주 청약 일정
- Oracle
- jquery
- 제이쿼리
- php
- 리눅스
- IPO
- 공모주
- linux
- Eclipse
- 주식
- 자바
- Stock
- JavaScript
- 오라클
- 공모주 청약 일정
- SQL
- codeigniter
- 맥
- 공모주 청약
- html
- MYSQL
- 자바스크립트
- 6월 공모주 청약 일정
- 주식 청약
- 주식 청약 일정
Archives
- Today
- Total
목록php file_get_contents(): SSL operation failed with code 1 (1)
개발자의 끄적끄적
[php] file_get_contents(): SSL operation failed with code 1 에러 해결 방법
[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"=>..
개발/php
2023. 7. 10. 11:31