The jdtofrench() function converts a Julian Day Count to a French Republican date.
PHP jdtofrench() Function has the following syntax.
jdtofrench(jd);
PHP jdtofrench() Function returns a French Republican date in format "month/day/year".
Convert a French Republican date to a Julian Day Count and back to a French Republican date:
<?php
$jd=frenchtojd(3,3,14);
echo $jd . "\n";
echo jdtofrench($jd);
?>
The code above generates the following result.