Latest web development tutorials

PHP jdtofrench () function

PHP Calendar Reference Manual PHP Calendar Reference Manual

Examples

The French Republican calendar date is converted to Julian day count, date back to the French Republican calendar and then converted:

<?php
$jd=frenchtojd(3,3,14);
echo $jd . "<br>";
echo jdtofrench($jd);
?>

Running instance »

Definition and Usage

jdtofrench () function to date Julian day count to a French Republican calendar.

Tip: See frenchtojd () function is used to convert the French Republican Calendar date to Julian day count.

grammar

jdtofrench( jd);

参数 描述
jd 必需。数字(儒略日计数)。

technical details

return value: In "month / day / year" returns the French Republican calendar date.
PHP version: 4+


PHP Calendar Reference Manual PHP Calendar Reference Manual