(PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8)
cal_from_jd — 将儒略日转换为支持的日历
cal_from_jd() 将 julian_day
中给定的儒略日转换为指定 calendar
的日期。支持的 calendar
值为 CAL_GREGORIAN
、CAL_JULIAN
、CAL_JEWISH
和 CAL_FRENCH
。
julian_day
儒略日,以整数形式表示
calendar
要转换到的日历
返回一个包含日历信息的数组,例如月份、日期、年份、星期几(dow
)、星期几和月份的缩写名称和完整名称以及以字符串形式表示的日期 "month/day/year"。星期几范围从 0
(星期日)到 6
(星期六)。
范例 #1 cal_from_jd() 范例
<?php
$today = unixtojd(mktime(0, 0, 0, 8, 16, 2003));
print_r(cal_from_jd($today, CAL_GREGORIAN));
?>
上面的例子将输出
Array ( [date] => 8/16/2003 [month] => 8 [day] => 16 [year] => 2003 [dow] => 6 [abbrevdayname] => Sat [dayname] => Saturday [abbrevmonth] => Aug [monthname] => August )