2
제한 시간을 늘렸지만 작동하지 않습니다.사용중인 서버의 컬 시간 초과를 늘리십시오.
$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);
연결 시간 초과가 있습니까? 아니면'test.php' 실행이 오래 걸리며 시간 초과됩니까 ??? –
@MilanChheda 연결하지 않고도 시간 초과가 발생합니다. –
@AdamWright 그런 다음 connecttimeout입니다. 내 대답을 시험해보십시오. – digiogi