The cal_to_jd() function is an inbuilt function in PHP which is used to converts a specified date into Julian Day Count. The cal_to_jd() function calculates the Julian day count for a date in the specified calendar. This function supports CAL_GREGORIAN, CAL_JULIAN, CAL_JEWISH and CAL_FRENCH calendars.
Syntax:
int cal_to_jd( $calendar, $month, $day, $year )
Parameters: This function accepts four parameters as mentioned above and described below:
- $calendar: It is used to specify the calendar for calculation. The calendar values are Gregorian calendar, French calendar, Jewish calendar and Julian calendar.
- $month: It is used to specify the Month in the selected calendar.
- $day: It is used to specify the Day in the selected calendar.
- $year : It is used to specify the year in the selected calendar.
Return Value: This function returns a Julian Day number.
Below programs illustrate the cal_to_jd() function in PHP.
Program 1:
php
<?php
$date = cal_to_jd(CAL_GREGORIAN, 11, 03, 2007);
echo $date ;
?>
|
Program 2:
php
<?php
$date = cal_to_jd(CAL_JULIAN, 7, 20, 20017);
echo $date ;
?>
|
Related Articles:
Reference: http://php.net/manual/en/function.cal-to-jd.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
27 Jan, 2022
Like Article
Save Article