[PHP] Curl 접속 속도가 늦은 경우

- 04-10
- 36,794 회
- 0 건
잘 되던 접속이 어느 순간 느려진 경우 CURL_IPRESOLVE_V4 를 통해 IPv6 을 제외했더니 속도가 개선되었습니다.
[code] $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://google.com'); curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_exec($ch); curl_close($ch); [/code]
로그인 후 댓글내용을 입력해주세요