目录

PHP frenchtojd() 函数

❮ PHP 日历参考

示例

将法国共和日期转换为儒略日计数并返回法国共和日期:

<?php
$jd=frenchtojd(3,3,14);
echo $jd . "<br>";
echo jdtofrench($jd);
?>
运行示例 »

定义和用法

frenchtojd() 函数将日期从法国共和历转换为儒略日计数。

提示:法国共和历是法国大革命期间提出的历法,自 1793 年末起法国政府使用了大约十二年。此函数仅转换第 1 年至第 14 年的日期(公历日期 1792 年 9 月 22 日 - 1806 年 9 月 22 日)。

提示:看着那(这jdtofrench()函数将儒略日计数转换为法国共和日期。


语法

frenchtojd( month,day,year);

参数值

Parameter Description
month Required. Specifies the month as a number from 1 to 13
day Required. Specifies the day as a number from 1 to 30
year Required. Specifies the year as a number from 1 to 14


技术细节

返回值: 返回儒略日数
PHP 版本: 4+

❮ PHP 日历参考