PHP cal_from_jd() Function
Example
Convert a Julian Day Count into a date of in the Gregorian calendar:
<?php
$d=unixtojd(mktime(0,0,0,6,20,2007));
print_r(cal_from_jd($d,CAL_GREGORIAN));
?>
Run Example »
Definition and Usage
The cal_from_jd() function converts a Julian Day Count into a date of a specified calendar.
Syntax
cal_from_jd(jd,calendar);
Parameter Values
Parameter | Description |
---|---|
jd | Required. Specifies a Julian Day as an integer |
calendar | Required. Specifies the calendar to convert to. Must be one of the following values:
|
Technical Details
Return Value: | Returns an array that contains calendar information like:
|
---|---|
PHP Version: | 4.1+ |
❮ PHP Calendar Reference