The JDToJulian() function converts a Julian day count to a Julian calendar date.
jdtojulian(jd)
Note: This function returns a string in the format "month/day/year".
<?php $jd = juliantojd(10,3,1975); echo($jd . "<br />");
$julian = jdtojulian($jd); echo($julian); ?>
The output of the code above will be:
2442702 10/3/1975
Jump to: Top of Page or HOME or Printer friendly page
W3Schools provides material for training only. We do not warrant the correctness of its contents. The risk from using it lies entirely with the user. While using this site, you agree to have read and accepted our terms of use and privacy policy.
Copyright 1999-2008 by Refsnes Data. All Rights Reserved.