English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

PHP Basic Tutorial

PHP Advanced Tutorial

PHP & MySQL

PHP Reference Manual

PHP jdtofrench() Function Usage and Example

PHP Calendar Calendar Function Manual

The jdtofrench() function converts Julian Day Count to the date of the French Republican Calendar.

Syntax

jdtofrench ( $juliandaycount );

Definition and Usage

This function converts Julian Day Count to the French Republican Calendar. It is the opposite of the FrenchToJD function.

Parameter

Serial NumberParameters and Description
1

juliandaycount(Required)

Number (Julian Day Count).

Return value

 With "month/Day/Year "form" of the French Revolution date

Online Example

Julian Day Count to French Republican Calendar Date Conversion:

<?php
   $d = jdtofrench(2380650);
   echo($d);
?>
Test and see‹/›

Output result:

3/3/14

   PHP Calendar Calendar Function Manual