Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www.old
/
pages
/
[
Home
]
File: fonctions.php
<?php $leJourAEteTrouve = false; $jourDuJour = intval(date("d")); $moisDuJour = intval(date("m")); $anneeDuJour = date("Y"); function estLeJourFuturLePlusProche($jour, $mois, $annee) { global $leJourAEteTrouve, $jourDuJour, $moisDuJour, $anneeDuJour; $joutInt = intval($jour); $moisInt = intval($mois); $estLejourLeplusProche = false; if ( $leJourAEteTrouve == false ) { if ( $annee >= $anneeDuJour ) { if ( $moisInt == $moisDuJour ) { if ( $joutInt >= $jourDuJour ) { $estLejourLeplusProche = true; } } else if ( $moisInt > $moisDuJour ) { $estLejourLeplusProche = true; } else if ( ( $moisDuJour == 12 ) && ( $moisInt == 1 ) ) { $estLejourLeplusProche = true; } } } if ( $estLejourLeplusProche == true ) { $leJourAEteTrouve = true; } return $estLejourLeplusProche; } ?>
©
2020 Black Eagle Team