jdtogregorian()函数是内置函数,可将儒略日整数转换为公历日期。该函数接受儒略日整数,并以$month /$day /$year返回转换后的公历日期。
用法:
jdtogregorian($jd)
参数:该函数接受一个强制参数$jd,该参数指定儒略日。
返回值:该函数返回公历日期。日期的返回格式为$month /$day /$year。
例子:
Input : 2458209 Output : 3/31/2018 Input : 2458236 Output : 4/27/2018
以下示例程序旨在说明jdtogregorian()函数。
程序1:以下示例程序旨在说明jdtogregorian()函数的用法。
<?php
// PHP program to demonstrate the
// use of jdtogregorian() function
// converts date to julian integer
$jd = gregoriantojd(3, 31, 2018);
// converts the Julian day to Gregorian date
$date = jdtogregorian($jd);
// prints the date
echo ($date), "\n";
?>
输出:
3/31/2018
程序2:下面的程序显示了传递无效的儒略日整数时的输出。
<?php
// PHP program to demonstrate the output
// of jdtogregorian() function when 0 is
// passed as Julian Day, which is invalid
// converts the Julian day to Gregorian date
// invalid hence outputs 0/0/0
$date = jdtogregorian(0);
// prints the date
echo ($date), "\n";
?>
输出:
0/0/0
参考:
http://php.net/manual/en/function.jdtogregorian.php
相关用法
- PHP Ds\Map put()用法及代码示例
- p5.js pow()用法及代码示例
- p5.js str()用法及代码示例
- p5.js day()用法及代码示例
- PHP pow( )用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- PHP each()用法及代码示例
- PHP next()用法及代码示例
- p5.js sq()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- p5.js value()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | jdtogregorian() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。