当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP jdtofrench()用法及代码示例


jdtofrench()函数是内置函数,它将Julian Day Integer转换为法语日期。该函数接受儒略日整数,并以$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()函数的用法。

<?php 
// PHP program to demonstrate the 
// use of jdtofrench() function  
  
// converts date to julian integer  
$jd = frenchtojd(1, 7, 13); 
  
// prints the julian day integer  
echo "The julian day integer is ", $jd, "\n"; 
  
// converts the Julian day to French date 
$date = jdtofrench($jd); 
  
// prints the date 
echo "The french date initially taken was ", ($date), "\n";  
  
?>

输出:

The julian day integer is 2380229
The french date initially taken was 1/7/13

程序2:下面的程序显示了传递无效的儒略日整数时的输出。

<?php 
// PHP program to demonstrate the 
// use of jdtofrench() function   
// in case of out of range parameter is passed  
  
// converts date to julian integer  
$jd = frenchtojd(1, 7, 18); 
  
// prints the julian day integer as 0 as year is out of range 
echo "The julian day integer is ", $jd, "\n"; 
  
// converts the Julian day to French date 
$date = jdtofrench($jd); 
  
// prints the date as 0/0/0 as french year is out of range 
echo "The french date initially taken was ", ($date), "\n";  
  
?>

输出:

The julian day integer is 0
The french date initially taken was 0/0/0

参考:
http://php.net/manual/en/function.jdtofrench.php



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | jdtofrench() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。