$tt=time(); // time stamp of today.
echo "Time Stamp = $tt ";
$day_jd=unixtojd($tt);
echo "Julian Day by using unixtojd() : $day_jd ";
The output is here
By using unix time stamp we can generate Julian date calendar or any other calendar.
unixtojd(time_stamp);
Time Stamp = 1760412874 Julian Day by using unixtojd() : 2460962
$timestamp = time();
echo unixtojd($timestamp); // Output: Julian day for the current Unix timestamp
$specific_date = mktime(0, 0, 0, 1, 1, 2000);
echo unixtojd($specific_date); // Output: Julian day for January 1, 2000
$date_before_1970 = mktime(0, 0, 0, 12, 31, 1965);
echo unixtojd($date_before_1970); // Output: Julian day for December 31, 1965
$date_str = strtotime('2022-03-15');
echo unixtojd($date_str); // Output: Julian day for March 15, 2022
$future_date = mktime(0, 0, 0, 1, 1, 2030);
echo unixtojd($future_date); // Output: Julian day for January 1, 2030
$epoch = mktime(0, 0, 0, 1, 1, 1970);
echo unixtojd($epoch); // Output: Julian day for the Unix Epoch
Author
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.