CURLOPT_TIMEOUT не работает в php / windows?

Я использую следующую функцию с XAMPP и Windows. Но я продолжаю получать «Неустранимая ошибка: превышено максимальное время выполнения 30 секунд»

Какие-нибудь советы?

function is_404($url) { $handle = curl_init($url); curl_setopt($handle, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($handle, CURLOPT_TIMEOUT,10); curl_setopt($handle, CURLOPT_CONNECTTIMEOUT,10); /* Get the HTML or whatever is linked in $url. */ $response = curl_exec($handle); /* Check for 404 (file not found). */ $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE); curl_close($handle); /* If the document has loaded successfully without any redirection or error */ if ($httpCode >= 200 && $httpCode < 300) { return false; } else { return true; } }