Convert a Gregorian date to a Julian Day Count and back to a Gregorian date:
<?php
$jd=gregoriantojd(6,20,2007);
echo $jd . "<br>";
echo jdtogregorian($jd);
?>
Run Example »
The gregoriantojd() function converts a date from the Gregorian Calendar to a Julian Day Count.
Note: Although this function can handle dates back to 4714 B.C., notice that the Gregorian calendar was not instituted until 1582, and some countries did not accept it until much later (Britain converted in 1752, USSR in 1918, and Greece in 1923). Most European countries used the Julian calendar prior the Gregorian.
Tip: Look at the jdtogregorian() function to convert a Julian Day Count to a Gregorian date.
gregoriantojd(
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 -4714 and 9999 |
Return Value: | Returns a Julian Day number |
---|---|
PHP Version: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!