Search w3schools.com:

SHARE THIS PAGE

PHP cal_from_jd() Function

PHP Calendar Reference PHP Calendar Reference

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 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:
  • CAL_GREGORIAN
  • CAL_JULIAN
  • CAL_JEWISH
  • CAL_FRENCH

Technical Details

Return Value: Returns an array that contains calendar information like:
  • date in form "month/day/year"
  • month
  • year
  • day of week
  • abbreviated and full names of weekday and month
PHP Version: 4.1+


PHP Calendar Reference PHP Calendar Reference

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]