當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Utilities::bbExit方法代碼示例

本文整理匯總了PHP中Utilities::bbExit方法的典型用法代碼示例。如果您正苦於以下問題:PHP Utilities::bbExit方法的具體用法?PHP Utilities::bbExit怎麽用?PHP Utilities::bbExit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Utilities的用法示例。


在下文中一共展示了Utilities::bbExit方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: appInit

 public function appInit($username, $region, $refresh)
 {
     if (($summonerId = DB_Interaction::userExists($username, $region)) && !$refresh) {
         $response = new Response(array('player_id' => $summonerId, 'region' => $region));
         exit($response->getResponse());
     }
     $riot = new RiotApi($username, $region, $refresh);
     $data = $riot->getApiData();
     $custom = new CustomData($data);
     $custom = $custom->getCustomData();
     if (DB_Interaction::insertRiotData($custom, $refresh)) {
         $response = new Response(array('player_id' => $custom['summoner_id'], 'region' => $custom['region']));
         exit($response->getResponse());
     } else {
         Utilities::bbExit('23', 'bb_api');
     }
 }
開發者ID:jncarlson,項目名稱:bluebaron,代碼行數:17,代碼來源:bb_api_class.php

示例2: file_get_contents

<?php

include './api-config.php';
$data = file_get_contents('php://input');
$data = json_decode($data);
$data = (array) $data;
$data['region'] = strtolower($data['region']);
if (!isset($data['id']) && !isset($data['region']) && !isset($data['partial'])) {
    Utilities::BBExit('69', 'bb_api');
}
if (!Utilities::verifyRequestVars($data)) {
    Utilities::BBExit('420', 'bb_api');
}
if ($data['partial'] == 'initialize') {
    $refresh = isset($data['update']) ? true : false;
    if (!DB_Interaction::canUserRefresh($data['id'], $data['region']) && $refresh) {
        $timeUntilRefresh = DB_Interaction::getTimeUntilUserCanRefresh($data['id'], $data['region']);
        Utilities::bbExit('666', 'bb_api', "You have {$timeUntilRefresh['minutes']} minutes {$timeUntilRefresh['seconds']} seconds until you can refresh.");
    }
    $api = new BBApi();
    $api->appInit($data['id'], $data['region'], $refresh);
} else {
    $api = new BBApi($data['id'], $data['region']);
    $api->getDataForApi($data['partial']);
}
開發者ID:jncarlson,項目名稱:bluebaron,代碼行數:25,代碼來源:api-internal.php

示例3: responseHasErrors

 /**
     * @desc checks the status code of the cURL response
     * @params
         $ch     - cURL handle of request
         $type   - the type of api call
     * @return boolean depending on the http status of the request
 */
 private function responseHasErrors($ch, $type, $i)
 {
     $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
     $error;
     if ($httpCode === 200) {
         // The response was good
         $error = false;
     } else {
         if ($httpCode === 503 || $httpCode === 500) {
             // possibly an error at the time of the request so we will try again
             $this->errors[$type] = $httpCode;
             error_log("\n\n\nThere was an error with the {$type} call. With error code: {$httpCode}. Calling url: {$this->lastCalledUrl}\n\n\n");
             $error = true;
         } else {
             // something else went wrong log it and don't try again
             error_log("\n\n\nThere was an error with the {$type} call. With error code: {$httpCode}. Calling url: {$this->lastCalledUrl}\n\n\n");
             Utilities::bbExit($httpCode, 'riot_api');
         }
     }
     if ($error && $i == 4) {
         Utilities::bbExit($httpCode, 'riot_api');
     }
     return $error;
 }
開發者ID:jncarlson,項目名稱:bluebaron,代碼行數:31,代碼來源:riot_api_class.php


注:本文中的Utilities::bbExit方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。