PHP | jdtofrench()函数
jdtofrench()函数是将儒略日整数转换为法国日期的内置函数。该函数接受儒略日整数并以$month / $day / $year 形式返回转换后的法国日期。
句法:
jdtofrench($jd)
参数:该函数接受一个强制参数$jd ,它指定儒略日。
返回值:函数返回法国日期。日期的返回格式为$month / $day / $year。如果儒略日整数作为 0 传递,则 0/0/0 作为输出返回。
例子:
Input : 2379254
Output : 5/8/10
Input : 2380229
Output : 1/7/13
下面的程序说明了 jdtofrench()函数。
程序1:下面的程序说明了jdtofrench()函数的使用。
输出:
The julian day integer is 2380229
The french date initially taken was 1/7/13
程序 2:下面的程序显示了通过无效儒略日整数时的输出。
输出:
The julian day integer is 0
The french date initially taken was 0/0/0
参考:
http:// PHP.net/manual/en/函数.jdtofrench。 PHP