我已经增加了超时但是它没有工作。
$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);
答案 0 :(得分:4)
您需要添加CURLOPT_CONNECTTIMEOUT选项。
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 600); //10 minutes