cal_to_jd()函數是PHP中的內置函數,用於將指定的日期轉換為儒略日計數。 cal_to_jd()函數計算指定日曆中日期的儒略日計數。此函數支持CAL_GREGORIAN,CAL_JULIAN,CAL_JEWISH和CAL_FRENCH標尺。
用法:
int cal_to_jd( $calendar, $month, $day, $year )
參數:該函數接受上述和以下所述的四個參數:
- $calendar:用於指定計算日曆。日曆值是公曆,法國日曆,猶太日曆和朱利安日曆。
- $month:用於在所選日曆中指定月份。
- $day:用於在所選日曆中指定日期。
- $year:用於在所選日曆中指定年份。
返回值:此函數返回儒略日數。
以下示例程序旨在說明PHP中的cal_to_jd()函數。
程序1:
<?php
// Converts a Gregorian calender Date
// into Julian Day number.
$date = cal_to_jd(CAL_GREGORIAN, 11, 03, 2007);
// Prints the conversion of date to
// Julain Day number.
echo $date;
?>
輸出:
2454408
程序2:
<?php
// Converts Julian calender Date into
// Julian Day count.
$date = cal_to_jd(CAL_JULIAN, 7, 20, 20017);
// Prints the above conversion.
echo $date;
?>
輸出:
9032468
相關文章:
參考: http://php.net/manual/en/function.cal-to-jd.php
相關用法
- p5.js sq()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js pow()用法及代碼示例
- CSS var()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js str()用法及代碼示例
注:本文由純淨天空篩選整理自chitranayal大神的英文原創作品 PHP | cal_to_jd() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。