Convert a Julian Day Count into a date in the Gregorian calendar.
<?php $d=unixtojd(mktime(0,0,0,6,20,2007)); print_r(cal_from_jd($d,CAL_GREGORIAN)); ?> |
The cal_from_jd() function converts a Julian Day Count into a date in a specified calendar system.
cal_from_jd(jd,calendar); |
Parameter |
Description |
jd |
Required. Specifies the Julian Day as an integer. |
calendar |
Required. Specifies the calendar to convert to. Must be one of the following values:
|
Return Value: |
Returns an array with calendar information including:
|
PHP Version: |
4.1+ |