jdtojulian()函數是PHP中的內置函數,用於將儒略日計數轉換為儒略曆日期。它將儒略日計數轉換為包含月/日/年格式的儒略曆日期的字符串。
用法:
int jdtojulian( $julianday )
參數:該函數接受強製性的單個參數$julianday。它包含以整數表示的儒略日。
返回值:此函數以月/日/年格式將Julian Date作為字符串返回。
以下示例程序旨在說明PHP中的jdtojulian()函數。
程序1:
<?php
// Converts a Julian calender date
// to Julian Day count.
$jdate = juliantojd(10, 25, 1996);
// Print the Julian Day count.
echo "JulianToJD is:".$jdate . "\n";
// First converts the julian day to Julian
// Calender date and then print it.
echo "JDToJulian is:".jdtojulian($jdate);
?>
輸出:
JulianToJD is:2450395 JDToJulian is:10/25/1996
程序2:
<?php
// Converts Julian calender Date
// to Julian Day count.
$jdate = juliantojd(1, 10, 1998);
// Print the Julian Day count
echo "Julian Day Count:".$jdate . "\n";
// Converts Julian Day count to
// the Julian calender Date
$julian = jdtojulian($jdate);
// Print the julian calender Date.
echo "Julian Calender Date:".$julian;
?>
輸出:
Julian Day Count:2450837 Julian Calender Date:1/10/1998
相關文章:
參考: http://php.net/manual/en/function.jdtojulian.php
相關用法
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP abs()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP Ds\Set get()用法及代碼示例
- PHP pi( )用法及代碼示例
注:本文由純淨天空篩選整理自chitranayal大神的英文原創作品 PHP | jdtojulian() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。