增加繁忙服务器的卷曲超时

时间:2017-12-26 07:02:50

标签: php curl

我已经增加了超时但是它没有工作。

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, "http://localhost.com/test.php");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_TIMEOUT, 999);
    $response = curl_exec($ch);
    print_r($response);

1 个答案:

答案 0 :(得分:4)

您需要添加CURLOPT_CONNECTTIMEOUT选项。

curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 600); //10 minutes