unixtojd

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

unixtojd将 Unix 时间戳转换为儒略日

说明

unixtojd(?int $timestamp = null): int|false

返回 Unix timestamp(自 1970 年 1 月 1 日以来的秒数)的儒略日,或者如果没有给出 timestamp,则返回当前日的儒略日。无论哪种方式,时间都被视为本地时间(而不是 UTC)。

参数

timestamp

要转换的 Unix 时间戳。

返回值

儒略日编号为整数,或在失败时为 false

变更日志

版本 说明
8.0.0 timestamp 现在可以为 null。

参见

  • jdtounix() - 将儒略日转换为 Unix 时间戳

添加注释

用户贡献的注释 6 个注释

fabio at llgp dot org
17 年前
如果您需要一种将 Unix 时间戳转换为十进制儒略日的简单方法,您可以使用

$julianDay = $unixTimeStamp / 86400 + 2440587.5;

86400 是每天的秒数;
2440587.5 是 1970 年 1 月 1 日 0:00 UTC 的儒略日。
匿名
18 年前
很明显,此函数返回儒略日,而不是儒略日 + 时间。

如果您想要包含时间,则需要执行以下操作

$t=time();
$jd=unixtojd($t)+($t%60*60*24)/60*60*24;
unixtojd at isslow dot com
5 个月前
unixtojd 速度很慢。
直接算术运算更快,并且仍然与原始 unixtojd 保持一致。

如果 $timestamp 为 null,请随意添加对 $timestamp 的测试以将其设置为 time()。

function fast_unixtojd($timestamp){
return intval($timestamp / 86400 + 2440588);
}

$time = time();
$t_unixtojd = 0;
$t_fast_unixtojd = 0;
for ($t = $time - 240 * 3600; $t < $time; $t++) {
$time1 = microtime(true);
$a = unixtojd($t);
$time2 = microtime(true);
$b = fast_unixtojd($t);
$time3 = microtime(true);
if ($a != $b) {
echo "$a $b $t\n";
break;
}
$t_unixtojd += $time2 - $time1;
$t_fast_unixtojd += $time3 - $time2;
}
echo "unixtojd: $t_unixtojd sec\nfast_unixtojd: $t_fast_unixtojd sec\n";

unixtojd: 0.42854166030884 sec
fast_unixtojd: 0.13218021392822 sec
hrabi at linuxwaves dot com
17 年前
根据 http://www.decimaltime.hynes.net/dates.html#jd 和阅读此侧的“X. 日历函数”,似乎 php 的“jd”确实是“历法儒略日”(应该命名为 cjd,并且主要严格地提到 - 不是吗?),用于在日历系统之间进行转换。那么它是可以的(但我认为手册不完整在这里非常令人困惑)。
即使这样,cJD 也调整到本地时间,所以……我现在有点糊涂了,所以没有其他东西 :-)。
hrabi at linuxwaves dot com
17 年前
这不可用。儒略日从中午开始,而不是午夜。最好使用 Fabio 的解决方案(但是,闰秒存在潜伏问题)。

<?php
function mmd($txt, $str_time) {
$t = strtotime($str_time);
$j = unixtojd($t);
$s = gmstrftime('%D %T %Z', $t);
$j_fabio = $t / 86400 + 2440587.5;

printf("${txt} => (%s) %s, %s U, %s J, or %s J<br>\n", $str_time, $s, $t, $j, $j_fabio);
}

//$xt = strtotime("1.1.1970 15:00.00 GMT");
$sam = "9.10.1995 02:00.01 GMT";
$spm = "9.10.1995 22:00.01 GMT";

// unixtojd for $spm returns 2450000 (OK), but for $sam returns 2450000 too! (it is wrong).
mmd("am", $sam); // should be 2449999 (+ 0.58334)
mmd("pm", $spm); // should be 2450000 (+ 0.41668)
?>

参考
Unix 时间、UTC、TAI、ntp……问题: http://en.wikipedia.org/wiki/Unix_time
儒略日期转换器: http://aa.usno.navy.mil/data/docs/JulianDate.html
历史概述: http://parris.josh.com.au/humour/work/17Nov1858.shtml
johnston at capsaicin dot ca
20 年前
还要注意,纪元是在 UTC 时间(纪元是时间中的一个特定点 - 纪元在每个时区并不不同),因此请注意时区复杂性。
To Top