我得到了这个功能,现在有时当网站关闭或加载很长时间时,它会减慢我网站的加载时间。
如果服务器在 2 秒内没有响应,有没有办法让它返回 false?如您所见,我尝试过,CURLOPT_CONNECTTIMEOUT
但这似乎没有奏效。
function url_get_contents($url)
{
if (!function_exists('curl_init'))
{
die('Exit: CURL is not installed or enabled!');
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 2);
$output = curl_exec($ch);
curl_close($ch);
return $output;
}