返回基于指定年的指定月的月中的天数
#Include <Date.au3>
_DateDaysInMonth($iYear, $iMonthNum)
$iYear | 4位数的年格式. |
$iMonthNum | 月份序数(1 = January, 12 = December). |
成功: | 返回指定月份的天数. |
失败: | 返回 0 并设置 @error |
@error: | 0 - 没有错误. |
1 - 无效月份序数或年 |
#include <Date.au3>
Local $iDays = _DateDaysInMonth(@YEAR, @MON)
MsgBox( 4096, "一个月的天数", "这个月共有 " & String( $iDays ) & " 天." )