unixtojd

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

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

说明

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

根据指定的 Unix timestamp (自 1970 年 1 月 1 日以来的秒数)返回儒略日数。如果没有指定时间戳则返回当前日期的儒略日数。 无论哪种方式,时间都被视为当地时间(不是 UTC)。

参数

timestamp

用于转换的 unix 时间戳。

返回值

int 类型的儒略日数, 或者在失败时返回 false

更新日志

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

参见

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top