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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。