如何通过cURL检查api站点中的504错误

时间:2017-05-22 14:33:34

标签: php curl

由于我的api请求服务器中出现504错误,我遇到了麻烦。我正在使用此代码来获取api数据

CGFloat footerHeight = dummyFooterView.bounds.height;
self.tableView.contentOffset = CGPointMake(0, -footerHeight);

2 个答案:

答案 0 :(得分:3)

$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); //check if 504 return.

有时我会检查代码是否返回200作为正常响应。

答案 1 :(得分:0)

你可以这样做

$api_url="****";
$t = microtime( TRUE );
file_get_contents($api_url);
$t = microtime( TRUE ) - $t;
if($t<=5){
Execute curl here
}