本文整理匯總了PHP中HttpClient::setTimeout方法的典型用法代碼示例。如果您正苦於以下問題:PHP HttpClient::setTimeout方法的具體用法?PHP HttpClient::setTimeout怎麽用?PHP HttpClient::setTimeout使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類HttpClient
的用法示例。
在下文中一共展示了HttpClient::setTimeout方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: sendVerifyRemoteRequest
/**
* 獲取校驗結果
* @param $ssid
* @param $result
* @param int $diff
* @return type
*/
public static function sendVerifyRemoteRequest($ssid, $result, $diff = 0)
{
$client = new HttpClient(App::getConfig('YUC_SERVICE_NAME'), App::getConfig('YUC_SERVICE_PORT'));
$client->setTimeout(App::getConfig('YUC_CLIENT_TIMEOUT'));
//設置超時
$client->post(App::getConfig('YUC_VERIFY_PATH'), array('site_key' => App::getConfig('YUC_SITE_KEY'), 'ssid' => $ssid, 'result' => $result, 'diffsec_client' => $diff));
$post_req = json_decode($client->getContent(), TRUE);
Log::Write('遠程驗證完成,輸入結果為:' . $result . ',返回狀態 :' . $client->getStatus() . ';' . 'POST 驗證碼正確性請求返回的數據:' . $client->getContent(), Log::DEBUG);
if ($client->getStatus() == 200 && is_array($post_req)) {
//200狀態 正常返回數據 且返回數據格式正常
self::$_yuc_code = $post_req['code'];
self::$_yuc_details = $post_req['details'];
self::$_yuc_result = $post_req['result'];
} else {
self::$_yuc_code = 'E_SEVERVALID_001';
self::$_yuc_details = '服務器請求失敗!';
self::$_yuc_result = 0;
}
return array('code' => self::$_yuc_code, 'result' => self::$_yuc_result, 'details' => self::$_yuc_details);
}