개발자의 끄적끄적

[php] phpCurl failed: Operation timed out after 1000 milliseconds with 0 bytes received 에러 해결 방법 본문

개발/php

[php] phpCurl failed: Operation timed out after 1000 milliseconds with 0 bytes received 에러 해결 방법

효벨 2021. 8. 20. 01:00
728x90
반응형

[php] phpCurl failed: Operation timed out after 1000 milliseconds with 0 bytes received 에러 해결 방법

 

 

php 에서

 

curl 을 이용하여 데이터를

 

주고 받다보면

 

아래와 같은 에러가 뜨는 경우가 있습니다.

 

Curl failed: Operation timed out after 1000 milliseconds with 0 bytes received

 

타임아웃 관련된 에러인듯해서,

 

curl 옵션을 설정하는 부분을 확인해보니

 

아래와 같이 1초로 설정이 되어있었습니다.

 

curl_setopt($ch, CURLOPT_TIMEOUT, 1);

 

위와 같이 설정된 내용중 1초를 10초로 늘리기 위해서

 

아래와 같이 작성하고 정장 및 실행하니

 

정상동작하는 것을 확인했습니다!

 

curl_setopt($ch, CURLOPT_TIMEOUT, 10);

 

참고들 하세요!

반응형
Comments