當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP jdtogregorian()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | jdtogregorian() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。