HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

jdtojulian

Description

The jdtojulian of Calendar for PHP converts a Julian Day Count to a Julian Calendar Date.

Syntax

jdtojulian(
    int $julian_day
): string

Parameters

julian_day

A julian day number as integer

Return

Returns the julian date as a string in the form "month/day/year"

Examples

1 · julian_day

<?

$julian_day = unixtojd();

$return = jdtojulian($julian_day);

echo $return;
2/1/2025