Here is a small piece of code to obtain the string data for a correctly converted gregorian date:
<?php
$arDateFrench = gregorian2FrenchDateArray(11, 9, 1799) ;
echo $arDateFrench[1] . " " . $arDateFrench[0] . " " . $arDateFrench[2] ;
/* the output will be:
18 Brumaire VIII
*/
function gregorian2FrenchDateArray($m, $d, $y)
{
$julian_date = gregoriantojd($m, $d, $y);
$french = jdtofrench($julian_date);
if($french == "0/0/0")
return "" ;
$arD = split("/", $french) ;
// get the month name
$monthname = FrenchMonthNames($arD[0]) ;
/* convert the year number to roman digits (as most historians do and documents of the time did */
$stryear = decrom($arD[2]) ;
return array($monthname, $arD[1], $stryear ) ;
}
function FrenchMonthNames($mo)
{
/* The names have been invented by Fabre d'Églantine, a second or rather third rank poet
of primarily pastoral poems, with each name referring to the respective period in the agricultural year; e.g. "Vendémiaire" (approx. September) is derived from "vendange" ("harvest"), "Brumaire" (Ocotober/November) from "brume" ("fog") and so on ... */
$arMo = array("Vendémiaire",
"Brumaire",
"Frimaire",
"Nivôse",
"Pluviôse",
"Ventôse",
"Germinal",
"Floréal",
"Prairial",
"Messidor",
"Thermidor",
"Fructidor",
"Sansculottide") ;
if($mo < count($arMo)+1)
return $arMo[$mo-1] ;
}
function decrom($dec){
$digits=array(
1 => "I",
4 => "IV",
5 => "V",
9 => "IX",
10 => "X",
40 => "XL",
50 => "L",
90 => "XC",
100 => "C",
400 => "CD",
500 => "D",
900 => "CM",
1000 => "M"
);
krsort($digits);
$retval="";
foreach($digits as $key => $value){
while($dec>=$key){
$dec-=$key;
$retval.=$value;
}
}
return $retval;
}
?>
jdtofrench
(PHP 4, PHP 5)
jdtofrench — Konvertiert ein Julianisches Datum zum Kalender der Französischen Revolution
Beschreibung
string jdtofrench
( int $juliandaycount
)
Konvertiert ein Julianisches Datum zum Kalender der Französischen Revolution
Parameter-Liste
- julianday
-
Ein Julianischer Tag als Integer
Rückgabewerte
Ein Französisches Revolutionsdatum als String in der Form "Monat/Tag/Yahr"
Siehe auch
- frenchtojd() - Konvertiert ein Datum der Französischen Revolution zu einem Julianischen Datum
- cal_from_jd() - Converts from Julian Day Count to a supported calendar
jdtofrench
squenz at titania dot bottoms-dream dot de
06-Apr-2006 03:25
06-Apr-2006 03:25
serged at noos dot fr
28-Oct-2003 05:00
28-Oct-2003 05:00
Very limited function:
(extract from source of 4.3.3)
These routines only convert dates in years 1 through 14 (Gregorian dates 22 September 1792 through 22 September 1806). This more than covers the period when the calendar was in use.
Pour les français :
Ces routines ne converitssent les dates que de l'an 1 à 14 (du 22 septembre 1792 au 22 septembre 1806). Cela couvre plus que la période pendant laquelle le calendrier à été utilisé.
