juliantojd()函數是PHP中的內置函數,用於將儒略曆日期轉換為儒略日計數。朱利安曆的日期範圍從公元前4713年(公元前)朱利安曆到公元9999年(anno domini)有效。
用法:
int juliantojd( $month, $day, $year )
參數:此函數接受上述和以下所述的三個參數:
- $month:它是必填參數,用於指定儒略曆中的月份數。月號的範圍是1(即1月)至12(即12月)。
- $day:它是必填參數,用於指定儒略曆中的日期。天數的範圍是1到31。
- $year:它是必填參數,用於指定儒略曆中的年份。年號是從-4713到9999。
返回值:此函數返回給定儒略日期的儒略日。
異常:朱利安曆法的有效範圍是公元前4713年。至公元9999年
以下示例程序旨在說明PHP中的juliantojd()函數。
程序1:
<?php
// converts Julian calender Date to
// Julian Day number.
$jdate = juliantojd(8, 30, 2018);
// printd the Julian Day Count
echo "Julian Day count:" . $jdate . "\n";
// converts Julian Day number to
// Julian calender Date.
$julian = jdtojulian($jdate);
// prints the Julian calender Date.
echo "Julian calender:" . $julian;
?>
輸出:
Julian Day count:2458374 Julian calender:8/30/2018
程序2:
<?php
// convert Julian Calender Date to Julian Day number.
$jdate = juliantojd(12, 3, 2001);
// prints the Julian calender.
echo "Julian calender " . $jdate . "\n";
// convert Julian calender Date into julian Day number.
$julian = jdtojulian($jdate);
// print the Julian date number.
echo "Julian Date Count:" . $julian;
?>
輸出:
Julian calender 2452260 Julian Date Count:12/3/2001
相關文章:
參考: http://php.net/manual/en/function.juliantojd.php
相關用法
- PHP Ds\Set xor()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP abs()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP Ds\Set get()用法及代碼示例
注:本文由純淨天空篩選整理自chitranayal大神的英文原創作品 PHP | juliantojd() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。