目录

PHP cal_to_jd() 函数

❮ PHP 日历参考

示例

将 2007 年 6 月 20 日(公历)转换为儒略日计数:

<?php
$d=cal_to_jd(CAL_GREGORIAN,6,20,2007);
echo $d;
?>
运行示例 »

定义和用法

cal_to_jd() 函数将指定日历中的日期转换为儒略日计数。


语法

cal_to_jd( calendar,month,day,year);

参数值

Parameter Description
calendar Required. Specifies the calendar to convert from. Must be one of the following values:
  • CAL_GREGORIAN
  • CAL_JULIAN
  • CAL_JEWISH
  • CAL_FRENCH
month Required. Specifies the month as a number
day Required. Specifies the day as a number
year Required. Specifies the year as a number


技术细节

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

❮ PHP 日历参考