cal_from_jd()函数是PHP中的内置函数,用于将儒略日计数转换为受支持的日历,例如公历,法国历法,犹太历法等。此函数接受两个参数$jd和$calendar并返回包含日历信息的数组指定日历的。
用法:
array cal_from_jd( $jd, $calendar )
参数:该函数接受上述和以下描述的两个参数:
- $jd:它用于将儒略日指定为整数。
- $calendar:它用于指定转换日期的日历。受支持的日历是公历,儒略历,法国历法和犹太历。
返回值:此函数返回一个包含日历信息的数组,这些信息如下所示:
- 格式为“month/day/year”的日期
- 月
- 年
- 星期几
- 工作日和月份的缩写和全名
程序1:
<?php
// PHP program to implement cal_from_jd()
// and convert date to the CAL_GREGORIAN
$input = unixtojd(mktime(0, 0, 0, 8, 16, 2016));
print_r(cal_from_jd($input, CAL_GREGORIAN));
?>
输出:
Array ( [date] => 8/16/2016 [month] => 8 [day] => 16 [year] => 2016 [dow] => 2 [abbrevdayname] => Tue [dayname] => Tuesday [abbrevmonth] => Aug [monthname] => August )
程序2:
<?php
// PHP program to implement cal_from_jd()
// and convert date to the CAL_JEWISH calender
$today = unixtojd(mktime(0, 0, 0, 6, 20, 2007));
print_r(cal_from_jd($today, CAL_JEWISH));
?>
输出:
Array ( [date] => 11/4/5767 [month] => 11 [day] => 4 [year] => 5767 [dow] => 3 [abbrevdayname] => Wed [dayname] => Wednesday [abbrevmonth] => Tammuz [monthname] => Tammuz )
相关文章:
参考: http://php.net/manual/en/function.cal-from-jd.php
相关用法
- p5.js nfc()用法及代码示例
- p5.js nfp()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- p5.js nfs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP sin( )用法及代码示例
- p5.js nf()用法及代码示例
- PHP tan( )用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
注:本文由纯净天空筛选整理自chitranayal大神的英文原创作品 PHP | cal_from_jd() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。