cURL really slow

后端 未结 2 1069
萌比男神i
萌比男神i 2021-01-12 03:02

Does anybody know why could cURL under php5 be so damn slow to fail even at 45s timeout, downloading a few kb file on a speedO\'light server?

The code is here as req

2条回答
  •  攒了一身酷
    2021-01-12 03:37

    When I set a CONNECTtimeout, I get faster response. Including this option:

    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,1)
    

提交回复
热议问题