用法
cal_to_jd ( $calendar, $month, $day, $year );
定義和用法
這將計算指定日曆中某個日期的儒略日計數。
參數
Sr.No | 參數及說明 |
---|---|
1 |
calendar(Required) 用於計算的日曆。可以使用以下日曆值 -
|
2 |
month(Required) 所選日曆中的月份 |
3 |
year(Required) 所選日曆中的日期 |
4 |
year(Required) 所選日曆中的年份 |
返回值
給定日曆中所選月份的天數長度。
示例
試試下麵的例子 -
<?php
$d = cal_to_jd(CAL_GREGORIAN,11,03,2007);
echo $d;
?>
這將產生以下結果 -
2454408
相關用法
- PHP call_user_func()用法及代碼示例
- PHP cal_days_in_month()用法及代碼示例
- PHP cal_days_in_month( )用法及代碼示例
- PHP cal_info( )用法及代碼示例
- PHP cal_to_jd()用法及代碼示例
- PHP cal_from_jd()用法及代碼示例
- PHP crypt(), password_hash()用法及代碼示例
- PHP ctype_xdigit()用法及代碼示例
- PHP closedir( )用法及代碼示例
- PHP chgrp()用法及代碼示例
- PHP ctype_punct()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP ceil()用法及代碼示例
- PHP ctype_lower()用法及代碼示例
- PHP compact()用法及代碼示例
- PHP copy()用法及代碼示例
- PHP chroot()用法及代碼示例
- PHP count_chars()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Function call_to_jd()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。