PHP 中的 FrenchToJD() 函数将法国共和党日期转换为儒略日计数。
注意− FrenchToJD() 函数将日期从 1 年转换为 14 年(格里高利日期 1792 年 9 月 22 日 - 1806 年 9 月 22 日)。
用法
frenchtojd(month, day ,year);
参数
month- 将月份指定为从 1(对于 Vendémiaire)到 13(对于每年年底的 5-6 天)之间的数字
day− 以 1 到 30 的数字表示的日期
year− 年份为 1 到 14 之间的数字
返回
FrenchToJD() 函数返回儒略日数。
示例
以下是一个例子 -
<?php
$res = frenchtojd(4,8,14);
echo $res . "<br>";
echo jdtofrench($res);
?>
输出
以下是输出 -
2380685 4/8/14
相关用法
- PHP FilesystemIterator __construct()用法及代码示例
- PHP FilesystemIterator getFlags()用法及代码示例
- PHP FilesystemIterator next()用法及代码示例
- PHP FilesystemIterator rewind()用法及代码示例
- PHP FilesystemIterator key()用法及代码示例
- PHP FilesystemIterator current()用法及代码示例
- PHP FilesystemIterator setFlags()用法及代码示例
- PHP PHPUnit assertIsNotFloat()用法及代码示例
- PHP disk_total_space()用法及代码示例
- PHP ReflectionClass getTraitAliases()用法及代码示例
- PHP hash_hmac()用法及代码示例
- PHP String wordwrap()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP ArrayIterator asort()用法及代码示例
- PHP IntlCalendar getTimeZone()用法及代码示例
- PHP SplPriorityQueue isCorrupted()用法及代码示例
- PHP XMLReader::getParserProperty()用法及代码示例
- PHP imagegif()用法及代码示例
注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 FrenchToJD() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。