PHP unixtojd() 函数
PHP unixtojd() 函数把 Unix 时间戳转换为儒略日计数
( PHP >= 4.0.0 )
函数原型
unixtojd(timestamp)
Unix 时间戳表示从格利高里历法 1970 年 1 月 1 日至今的秒数
提示: 请参阅 jdtounix() 函数把儒略日计数转换为 Unix 时间戳
参数
参数 | 描述 |
---|---|
timestamp | 可选。规定要进行转换的 Unix 时间戳 |
返回值
返回 Unix 时间戳(从 1970 年 1 月 1 日至今的秒数)的儒略日数字
如果 timestamp 没给出,则返回当前时间的儒略日数字
范例
下面的范例把 Unix 时间戳转换为儒略日计数
<?php echo unixtojd();