目录

PHP unixtojd() 函数

❮ PHP 日历参考

示例

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

<?php
echo unixtojd();
?>
运行示例 »

定义和用法

unixtojd() 函数将 Unix 时间戳转换为儒略日计数。

笔记:Unix时间戳表示自1970年1月1日午夜(公历)以来的秒数。

提示:看着那(这jdtounix()函数将儒略日计数转换为 Unix 时间戳。


语法

unixtojd( timestamp);

参数值

Parameter Description
timestamp Optional. Specifies A unix timestamp to convert


技术细节

返回值: 返回 Unix 时间戳的儒略日数(自 1970 年 1 月 1 日起的秒数),如果没有则返回当天的儒略日数时间戳给出
PHP 版本: 4+

❮ PHP 日历参考