PHP 中的 cal_to_jd() 函数
phpprogrammingserver side programming
cal_to_jd() 函数将日期转换为儒略日计数。它返回儒略日数。
语法
cal_to_jd(calendar, month, day, year)
参数
calendar − 要转换的日历。可能的值 −
CAL_GREGORIAN
CAL_JULIAN
CAL_JEWISH
CAL_FRENCH
month − 将月份设置为数字。
day − 将日期设置为数字。
year − 将年份设置为数字。
返回
cal_to_jd() 函数返回儒略日数。
示例
以下是示例 −
<?php $res = cal_to_jd(CAL_GREGORIAN,10,15,2018); echo $res; ?>
输出
2458407