目录

PHP gregoriantojd() 函数

❮ PHP 日历参考

示例

将公历日期转换为儒略日计数,然后再转换回公历日期:

<?php
$jd=gregoriantojd(6,20,2007);
echo $jd . "<br>";
echo jdtogregorian($jd);
?>
运行示例 »

定义和用法

gregoriantojd() 函数将日期从公历转换为儒略日计数。

笔记:尽管此函数可以处理追溯到公元前 4714 年的日期,但请注意,公历直到 1582 年才制定,并且一些国家直到很晚才接受它(英国于 1752 年转换,苏联于 1918 年,希腊于 1923 年)。大多数欧洲国家在使用公历之前使用儒略历。

提示:看着那(这jdtogregorian()函数将儒略日计数转换为公历日期。


语法

gregoriantojd( month,day,year);

参数值

Parameter Description
month Required. Specifies the month as a number from 1 to 12
day Required. Specifies the day as a number from 1 to 31
year Required. Specifies the year as a number between -4714 and 9999


技术细节

返回值: 返回儒略日数
PHP 版本: 4+

❮ PHP 日历参考