本文整理汇总了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);
示例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...