Latest web development tutorials
 

PHP juliantojd() Function

< PHP Calendar Reference

Example

Convert a Julian date to a Julian Day Count and back to a Julian date:

<?php
$jd=juliantojd(6,20,2007);
echo $jd . "<br>";
echo jdtojulian($jd);
?>
Run example »

Definition and Usage

The juliantojd() function converts a date from the Julian Calendar to a Julian Day Count.

Note: Although this function can handle dates back to 4713 B.C., notice that the Julian calendar was created in 46 B.C., and it did not stabilize until at least 8 A.D. Also, the beginning of a year varied from one culture to another - not all accepted January as the first month. Remember that the current calendar being used worldwide is the Gregorian calendar. The gregoriantojd() function can be used to convert such dates to their Julian Day count.

Tip: Look at the jdtojulian() function to convert a Julian Day Count to a Julian date.


Syntax

juliantojd(month,day,year);

Parameter Description
month Required. Specifies the month as a number from 1 to 12
day Required. Specifies the day as a number from 1 to 31
year Required. Specifies the year as a number between -4713 and 9999

Technical Details

Return Value: Returns a Julian Day number
PHP Version: 4+

< PHP Calendar Reference