PHP 中的 cal_from_jd() 函数

phpprogrammingserver side programming

cal_from_jd() 函数返回有关给定日历的信息。

语法

cal_from_jd(julian_day, calendar)

参数

  • julian_day − 将儒略日作为整数提及

  • calendar − 日历。可能的值是 −

    • CAL_GREGORIAN

    • CAL_JULIAN

    • CAL_JEWISH

    • CAL_FRENCH

返回

cal_from_jd() 函数返回一个包含以下信息的数组 −

  • date
  • month
  • year
  • day of week

示例

以下是示例 −

<?php
$res = unixtojd(mktime(0, 0, 0, 10, 05, 2018));
print_r(cal_from_jd($res, CAL_GREGORIAN));
?>

输出

以下是输出 −

Array
(
[date] => 10/5/2018
[month] => 10
[day] => 5
[year] => 2018
[dow] => 5
[abbrevdayname] => Wed
[dayname] => Wednesday
[abbrevmonth] => Oct
[monthname] => October
)

相关文章