gregoriantojd
gregoriantojd
(PHP 4, PHP 5, PHP 7)
gregoriantojd - 将格里历日期转换为儒略日计数
Description
int gregoriantojd ( int $month , int $day , int $year )
公元前4714年至公元9999年的公历日历的有效范围
虽然这个函数可以处理日期一直回到公元前4714年,但这种使用可能没有意义。直到公元1582年10月15日(即1582年10月5日朱利安日历)才开始公历。一些国家直到很晚才接受它。例如,英国于1752年改信,1918年改为苏联,1923年改为希腊。大多数欧洲国家在格里高利之前使用了儒略历。
Parameters
month
该月份从1(1月份)到12(12月份)
day
一月中的天数从1到31
year
今年为-4714至9999之间的数字
Return Values
给定格雷戈里日期的朱连日作为整数。
Examples
Example #1 Calendar functions
<?php
$jd = GregorianToJD(10, 11, 1970
echo "$jd\n";
$gregorian = JDToGregorian($jd
echo "$gregorian\n";
?>
← frenchtojd
jddayofweek →
© 1997–2017 The PHP Documentation Group
根据知识共享署名许可证v3.0或更高版本授权。