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


PHP interPool::isLastDayOfPeriod方法代碼示例

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


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

示例1:

    $reponseGerant = $_REQUEST["choixBallotage{$ballotage_id}"];
    if ($reponseGerant != "") {
        if ($reponseGerant == 2) {
            $pool->writeBallotageReponse($id_pool, $ballotage_id, "N", $gerant, $id_saison, $periode, -1, $salary_cap_enabled, $salary_cap, $salary_floor);
        } else {
            $id_player_retour = $_REQUEST["cb_ballotage{$ballotage_id}"];
            if ($id_player_retour != "") {
                $rtn = $pool->writeBallotageReponse($id_pool, $ballotage_id, "Y", $gerant, $id_saison, $periode, $id_player_retour, $salary_cap_enabled, $salary_cap, $salary_floor);
                if ($rtn == "non") {
                    $message = "La récupération d'un joueur au ballotage a été refusé, car le plafond ou le plancher salarial n'était pas respecté.";
                }
            }
        }
    }
}
if ($pool->isLastDayOfPeriod($id_pool, $periode, $id_saison) && $pool->todayDate->format('Y-m-d H:i:s') > $hour_max_last_day) {
    $disabled = "disabled";
}
// update du champ ballotage_vu de la table accounts_detail
$query = "update accounts_detail set ballotage_vu='Y'\n      where id_pool = {$id_pool}\n      and saison_id = {$id_saison}\n      and gerant = {$gerant}";
mysql_query($query, $pool->handle);
// Fil d'ariane
switch ($type_ballotage) {
    case "periode":
        $str_fil_ariane = "Gestion Équipe / Ballotage";
        break;
    case "historique":
        $str_fil_ariane = "Statistiques / Historique Ballotage";
        break;
}
$gravatarA = $pool->create_gravatar_array($id_pool, $id_saison);
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:ballotage.php

示例2: explode

            }
        }
    }
}
// rיcupיrer certaines informations du pool
$data = $pool->getConfigPool($id_pool, $id_saison);
$nhl_team_as_gerant_name = $data["nhl_team_as_gerant_name"];
$nbre_periodes = $data[nbre_periodes];
$joueur_blesse_ballotage = $data["joueur_blesse_ballotage"];
$ballotage_hour_first_day = $data["ballotage_hour_first_day"];
$hourA = explode(":", $ballotage_hour_first_day);
$ballotage_hour_first_day = mktime($hourA[0], $hourA[1], $hourA[2]);
$hour_max_last_day = $data["ballotage_hour_last_day"];
$timeA = explode(":", $hour_max_last_day);
$hour_max_last_day = mktime($timeA[0], $timeA[1], $timeA[2]);
if ($pool->isLastDayOfPeriod($id_pool, $periode, $id_saison) && time() > $hour_max_last_day) {
    $disabled = "disabled";
}
// update du champ ballotage_vu de la table accounts_detail
$query = "update accounts_detail set ballotage_vu='Y'\n          where id_pool = {$id_pool}\n          and saison_id = {$id_saison}\n          and gerant = {$gerant}";
mysql_query($query, $pool->handle);
// Fil d'ariane
switch ($type_ballotage) {
    case "periode":
        $str_fil_ariane = "Move de joueurs / Ballotage / Pיriode";
        break;
    case "historique":
        $str_fil_ariane = "Move de joueurs / Ballotage / Historique";
        break;
}
// tableau des couleurs pour les graphs des rיponses...
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:ballotage.php


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