What is Calendar JDToFrench in PHP

In this article I am going to explain about JDToFrench function in PHP.
  • 1704

PHP Calendar JDToFrench() Function

The JDToFrench function converts a Julian day count to the French Republican Calendar date.

Syntax of  JDToFrench function

jdtofrench(jd)

Parameters in JDToFrench function

It has only one parameter:

Parameter Description
jd A number of Julian day count.

Example of Calendar JDToFrench function

<html>

<body>

 

<?php

$d=jdtofrench(2380087);

echo($d);

?>

 

</body>

</html>

 

Output:

JDToFrench function.jpg

You may also want to read these related articles :
here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.