PHP cal_from_jd function

PHP cal_days_in_month() function
PHP cal_info() function

In this article, you will learn how to get the date out of Julian Day count. The cal_from_jd() function converts the Julian Day count into the corresponding date of the given calendar.

Note: The Julian Day Count is the count of days since Julian Day (January 1, 4713 B.C.).

What is the syntax of the cal_from_jd() function?

cal_from_jd(jd,calendar);
ParametersDetails
jdJulian Day – Required
calendarOne of the following Calendars to get the date according to – Required
CAL_GREGORIAN
CAL_JULIAN
CAL_JEWISH
CAL_FRENCH
PHP cal_from_jd() function

Examples of cal_from_jd function

<?php
$date=unixtojd(mktime(0,0,0,9,10,2021));
print_r(cal_from_jd($date,CAL_GREGORIAN));
?>
PHP cal_days_in_month() function
PHP cal_info() function

Stay up-to-date about PHP!

We don’t spam!

en English
X
Scroll to Top