略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: GregorianToJD

2024-05-05

GregorianToJD

(PHP 4, PHP 5, PHP 7, PHP 8)

GregorianToJD转变一个Gregorian历法日期到Julian Day计数

说明

gregoriantojd(int $month, int $day, int $year): int

Gregorian历法的合理范围是4714 B.C. 至 9999 A.D.

虽然这个函数可以处理4714 B.C.以前的日期,但是没有意义。Gregorian历法直到1582年10年15日(或是Julian历法的1582年10月5日)才被发明,很久以后一些国家也没有接受它。比如,英国是在1752年开始使用Gregorian历法,苏联是在1918年,希腊是在1923年,大部分的欧洲国家使用Julian历法。

参数

month

月份的范围是 1(January)到 12(December)。

day

日期的范围是 1到 31。

year

年份的范围是 -4714 到 9999。

返回值

给定gregorian历法日期的julian天数。

范例

示例 #1 Calendar functions

<?php
$jd 
GregorianToJD(10111970);
echo 
"$jd\n";
$gregorian JDToGregorian($jd);
echo 
"$gregorian\n";
?>

参见

  • jdtogregorian() - 转变一个Julian Day计数为Gregorian历法日期
  • cal_to_jd() - 从一个支持的历法转变为Julian Day计数。
add a noteadd a note

User Contributed Notes 3 notes

up
2
jettyrat at jettyfishing dot com
17 years ago
You can obtain the decimal fraction of the Julian date with the php gregoriantojd() function or the function shown below by applying this code to the returned value.

<?php
  $julianDate
= gregoriantojd($month, $day, $year);

 
//correct for half-day offset
 
$dayfrac = date('G') / 24 - .5;
  if (
$dayfrac < 0) $dayfrac += 1;

 
//now set the fraction of a day
 
$frac = $dayfrac + (date('i') + date('s') / 60) / 60 / 24;

 
$julianDate = $julianDate + $frac;
?>
up
0
httpwebwitch
18 years ago
This function also ignores decimal fractions in JD dates, and it uses non-standard format for returning the Gregorian date.

So, if your JD date is 2453056.28673, the Gregorian returned value is 2/20/2004, not "2004-02-20 23:45:36"

The decimal part is important, since the Julian day begins at noon, for example 2453056.49 is on Friday, 2453056.50 is on Saturday. Discarding the decimal part means that your returned Gregorian Date will be wrong 50% of the time.
up
-2
jfg
13 years ago
If you need the same output as the g_date_get_julian function of the GlibC, here is my php implementation :

<?php
   
/**
     * Glib g_date_get_julian PHP implementation
     *
     * @param  $str  Date string in a format accepted by strtotime
     * @author jfg
     */
   
private function _get_julian( $str )
    {
       
$d = date_create($str);

        if(
$d == false )
            return
0;
       
       
$day_in_year = (int) date_format($d, "z");
       
$year        = (int) date_format($d, "Y") - 1;
       
$julian_days = $year * 365;
       
$julian_days += ($year >>= 2);
       
$julian_days -= ($year /= 25);
       
$julian_days += $year >> 2;
       
$julian_days += $day_in_year + 1;

        return
ceil($julian_days);
    }

?>

官方地址:https://www.php.net/manual/en/function.gregoriantojd.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3