用法
frenchtojd ( $month, $day, $year );
定义和用法
它将法国共和历中的日期转换为儒略日计数。
参数
Sr.No | 参数及说明 |
---|---|
1 |
month(Required) 月份为从 1 到 13 的数字。 |
2 |
day(Required) 以 1 到 30 的数字表示的日期 |
3 |
year(Required) 年份为 1 到 14 之间的数字 |
返回值
给定法国大革命日期的儒略日作为整数。
示例
试试下面的例子——
<?php
$d = frenchtojd(3,3,14);
echo($d);
?>
这将产生以下结果 -
2380650
相关用法
- PHP FrenchToJD()用法及代码示例
- 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 - Function FrenchToJD()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。