PHP cal_days_in_month() 函數
PHP cal_days_in_month() 函數
實例
針對指定的年份和歷法,獲取一個月中的天數:
<?php
$d=cal_days_in_month(CAL_GREGORIAN,10,2005);
echo "There was $d days in October 2005";
?>
$d=cal_days_in_month(CAL_GREGORIAN,10,2005);
echo "There was $d days in October 2005";
?>
運行實例 ?
定義和用法
cal_days_in_month() 函數針對指定的年份和歷法,返回一個月中的天數。
語法
cal_days_in_month(calendar,month,year);
參數 | 描述 |
---|---|
calendar | 必需。規(guī)定要使用的歷法。請參閱 PHP Calendar 常量。 |
month | 必需。規(guī)定選定歷法中的月。 |
year | 必需。規(guī)定選定歷法中的年。 |
技術細節(jié)
返回值: | 針對給定的年份和歷法,返回選定月份中的天數。 |
---|---|
PHP 版本: | 4.1+ |

相關文章
- PHP 運算符
- PHP 文件上傳
- PHP Cookie
- PHP 錯誤處理
- PHP JSON
- PHP array_change_key_case() 函數
- PHP array_merge_recursive() 函數
- PHP array_multisort() 函數
- PHP array_reverse() 函數
- PHP array_uintersect_uassoc() 函數
- PHP arsort() 函數
- PHP current() 函數
- PHP extract() 函數
- PHP key() 函數
- PHP natsort() 函數
- PHP next() 函數
- PHP pos() 函數
- PHP rsort() 函數
- PHP 5 Date/Time 函數
- PHP Filter 函數