例
獲取在一個月內給定年和日曆天數:
<?php
$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 | 需要。 指定要使用的日曆。 看看PHP日曆常量 |
month | 需要。 指定在選定的日曆月 |
year | 需要。 指定在選定的日曆年 |
技術細節
返回值: | 天於所選月份,在給定的年份和日曆,數 |
---|---|
PHP版本: | 4.1+ |
<PHP日曆引用