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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。