目录

PHP jewishtojd() 函数

❮ PHP 日历参考

示例

将犹太日期转换为儒略日计数:

<?php
$jd=jewishtojd(6,20,2007);
echo $jd;
?>
运行示例 »

定义和用法

jewishtojd() 函数将犹太历中的日期转换为儒略日计数。

笔记:尽管此函数可以处理追溯到 1 年(公元前 3761 年)的日期,但请注意,一开始没有公式来确定一个月的开始。当第一次观察到新月时,新的一个月开始了。

提示:看着那(这jdtojewish()函数将儒略日计数转换为犹太日期。


语法

jewishtojd( 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 between 1 and 9999


技术细节

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

❮ PHP 日历参考