目录

PHP cal_from_jd() 函数

❮ PHP 日历参考

示例

将儒略日计数转换为公历中的日期:

<?php
$d=unixtojd(mktime(0,0,0,6,20,2007));
print_r(cal_from_jd($d,CAL_GREGORIAN));
?>
运行示例 »

定义和用法

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


语法

cal_from_jd( jd,calendar);

参数值

Parameter Description
jd Required. Specifies a Julian Day as an integer
calendar Required. Specifies the calendar to convert to. Must be one of the following values:
  • CAL_GREGORIAN
  • CAL_JULIAN
  • CAL_JEWISH
  • CAL_FRENCH


技术细节

返回值: 返回一个包含日历信息的数组,例如:
  • 格式"month/day/year" 中的日期
  • 星期几
  • 工作日和月份的缩写和全名
PHP 版本: 4.1+

❮ PHP 日历参考