jdtofrench
Description
The jdtofrench of Calendar for PHP converts a Julian Day Count to the French Republican Calendar.
Syntax
jdtofrench( int $julian_day ): string
Parameters
julian_day
A julian day number as integer
Return
Returns the french revolution date as a string in the form "month/day/year"
Examples
1 · julian_day
<? $month = 9; $day = 22; $year = 1806; $julian_day = gregoriantojd($month, $day, $year); $return = jdtofrench($julian_day); echo $return;
13/5/14