我有一个场景。这里我使用Curl来访问API。如果API无法访问,我必须发送警报电子邮件。那么,如果请求超时,我该如何检查?
这是我的密码。
$alerthttp1 = array();
$string = 'somestring';
$key = md5($string);
$service_url = 'www.someurl.com/'.$key;
$curl = curl_init($service_url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_TIMEOUT, 300);
$curl_response = curl_exec($curl);
$curl_errno = curl_errno($curl);
$curl_error = curl_error($curl);
error_log(json_encode($curl_errno));
error_log(json_encode($curl_error));
if(curl_error($curl) || $curl_response === false || $curl_errno > 0)
{
$info = curl_getinfo($curl);
hlog_errorlog('error occured during curl exec - ' . var_export($info));
hlog_errorlog('error -----------> '. $curl_error);
curl_close($curl);
$alerthttp1[] = array('status' => 'FAILED');//for email alert
}
请建议我,最好的编码方式。
感谢
尝试使用CURLOPT_CONNECTTIMEOUT而不是CURLOPT_TIMEOUTCURLOPT_CONNECTTIMEOUT是允许连接到服务器的最长时间(以秒为单位)。
不,您不能用CURL知道它。询问API支持。或者自己选择超时时间。通常是30秒。