PHP jdtounix() 函数
PHP 教程
· 2019-01-23 09:43:24
实例
把格利高里历法的日期转换为儒略日计数,然后把儒略日计数转换为 Unix 时间戳:
<?php
$jd=gregoriantojd(10,3,1975);
echo jdtounix($jd);
?>
$jd=gregoriantojd(10,3,1975);
echo jdtounix($jd);
?>
定义和用法
jdtounix() 函数把儒略日计数转换为 Unix 时间戳。
注意:如果参数 jd 不在 Unix 新纪元之中(意味着格利高里年必须介于 1970 和 2037 之间,或者 jd >= 2440588 且 jd <= 2465342),则该函数将返回 false。所返回的时间是本地时间。
提示:请参阅 unixtojd() 把 Unix 时间戳转换为儒略日计数。
语法
jdtounix(jd);
参数 | 描述 |
---|---|
jd | 必需。介于 2440588 和 2465342 之间的儒略日数字。 |
技术细节
返回值: | 返回指定的儒略日开始时的 Unix 时间戳。 |
---|---|
PHP 版本: | 4+ |
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
Transcending CSS
Andy Clarke、Molly E. Holzschlag / New Riders / November 15, 2006 / $49.99
As the Web evolves to incorporate new standards and the latest browsers offer new possibilities for creative design, the art of creating Web sites is also changing. Few Web designers are experienced p......一起来看看 《Transcending CSS》 这本书的介绍吧!