Monday 26 August 2013

PHP Function jdtogregorian()

Syntax

jdtogregorian ( $julianday );

Definition and Usage

This converts Julian Day Count to a string containing the Gregorian date in the format of "month/day/year".

Paramters

ParameterDescription
juliandayRequired. A julian day number as integer

Return Value

The gregorian date as a string in the form "month/day/year"

Example

Try out following example:
<?php
$jd = gregoriantojd(10, 11, 1970);
echo "$jd<br />";
$gregorian = jdtogregorian($jd);
echo "$gregorian<br />";
?> 
This will produce following result:
2440871
10/11/1970

No comments:

Post a Comment