Section courante

A propos

Section administrative du site

Autrefois, système de mesure pour les phases lunaires, il devient par la suite un instrument de mesure pour s'immortalisé avec les empereurs romains Jules César et Auguste, il s'agit bien sure du calendrier. Bien qu'à l'origine on utilisait un calendrier Julien, on utilise maintenant le calendrier grégorien. A l'aide du code source PHP suivant, vous trouverez un calendrier grégorien correspondant à la réponse que vous souhaitez :

  1. <style>
  2. .calendarCell {
  3.       border: 1px solid #000000;
  4.       width: 100px;
  5.       font-family: Verdana, Arial, Helvetica, sans-serif;
  6.       font-size: 14px;
  7.       text-align: left;
  8.       padding: 0px;
  9.       margin: 0px;
  10. }
  11. </style>
  12. <?php
  13. function IsLeapYear($Year) {
  14.  return ((($Year & 3) == 0) && (($Year % 100 != 0) || ($Year % 400 == 0)));
  15. }
  16.  
  17. function DateToDayOfWeek($Y,$M,$D) {
  18.  if(($M > 12) || (0 == $M) || (0 == $D)) {
  19.   return 0;
  20.  }
  21.  if($Y < 0) {
  22.   $Y++;
  23.  }
  24.  $T0 = intval(0.6 + 1 / $M);
  25.  $T1 = $M + 12 * $T0;
  26.  $T2 = $Y - $T0;
  27.  $Total = intval(13 * ($T1 + 1) / 5) + intval(5 * $T2 / 4) - intval($T2 / 100) + intval($T2 / 400) + $D - 1;
  28.  return $Total - 7 * intval($Total / 7);
  29. }
  30.  
  31. function PutCalendar($Year,$Month) {
  32.  $Days = array(0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
  33.  if(IsLeapYear($Year)) {
  34.   $Days[2] = 29;
  35.  }
  36.  $D = DateToDayOfWeek($Year, $Month, 1);
  37.  echo "<table>";
  38.  echo '<tr style="background-color: #87b474;">'.
  39.            '<td class="calendarCell">Dimanche</td>'.
  40.           '<td class="calendarCell">Lundi</td>'.
  41.           '<td class="calendarCell">Mardi</td>'.
  42.           '<td class="calendarCell">Mercredi</td>'.
  43.           '<td class="calendarCell">Jeudi</td>'.
  44.           '<td class="calendarCell">Vendredi</td>'.
  45.           '<td class="calendarCell">Samedi</td>'.
  46.         "</tr>";
  47.  echo str_repeat("<td></td>",$D);
  48.  for($I = 1;$I <= $Days[$Month]; $I++) {
  49.     print '<td class="calendarCell">'.$I."</td>";
  50.     if(0 == ($D + $I) % 7) {
  51.          print "</tr><tr>";
  52.     }
  53.  }
  54.  echo "</table>";
  55. }
  56.  
  57. function MonthName($Month) {
  58.   if($Month == 1) {
  59.      return "Janvier";
  60.   } elseif($Month == 2) {
  61.      return "Février";
  62.   } elseif($Month == 3) {
  63.      return "Mars";
  64.   } elseif($Month == 4) {
  65.      return "Avril";
  66.   } elseif($Month == 5) {
  67.      return "Mai";
  68.   } elseif($Month == 6) {
  69.      return "Juin";
  70.   } elseif($Month == 7) {
  71.      return "Juillet";
  72.   } elseif($Month == 8) {
  73.      return "Août";
  74.   } elseif($Month == 9) {
  75.      return "Septembre";
  76.   } elseif($Month == 10) {
  77.      return "Octobre";
  78.   } elseif($Month == 11) {
  79.      return "Novembre";
  80.   } elseif($Month == 12) {
  81.      return "Décembre";
  82.   }
  83.   return "";
  84. }
  85.  
  86. for($I = 1; $I <= 12; $I++) {
  87.    echo MonthName($I)." 2008n";
  88.    PutCalendar(2008, $I);
  89. }
  90. ?>

on obtiendra le résultat suivant :

Janvier 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
12345
6789101112
13141516171819
20212223242526
2728293031
Février 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
12
3456789
10111213141516
17181920212223
242526272829
Mars 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
1
2345678
9101112131415
16171819202122
23242526272829
3031
Avril 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
12345
6789101112
13141516171819
20212223242526
27282930
Mai 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
123
45678910
11121314151617
18192021222324
25262728293031
Juin 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
1234567
891011121314
15161718192021
22232425262728
2930
Juillet 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
12345
6789101112
13141516171819
20212223242526
2728293031
Août 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
12
3456789
10111213141516
17181920212223
24252627282930
31
Septembre 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
123456
78910111213
14151617181920
21222324252627
282930
Octobre 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
1234
567891011
12131415161718
19202122232425
262728293031
Novembre 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
1
2345678
9101112131415
16171819202122
23242526272829
30
Décembre 2008
DimancheLundiMardiMercrediJeudiVendrediSamedi
123456
78910111213
14151617181920
21222324252627
28293031

Voir également

Système - Calendrier - Grégorien

Dernière mise à jour : Mardi, le 20 octobre 2009