Current Location: Home> Function Categories> jdtojulian

jdtojulian

Convert Julian days count to dates in Julian calendar.
Name:jdtojulian
Category:Uncategorized
Programming Language:php
One-line Description:Convert Julian days count to dates in Julian calendar.

Definition and usage

jdtojulian() function converts the Julian day count to the date in the Julian calendar.

Tip: See juliantojd() function to convert dates in the Julian calendar to Julian day counts.

Example

Convert the dates in the Julian calendar to the Julian date count, and then convert them back to the dates in the Julian calendar:

 <?php
$jd = juliantojd ( 9 , 25 , 2016 ) ;
echo $jd . "<br>" ;
echo jdtojulian ( $jd ) ;
?>

Run the instance

grammar

 jdtojulian ( jd ) ;
parameter describe
jd Required. Numbers (Julian day count).
Similar Functions
Popular Articles