函数参考


_DateToMonth

返回指定月份的名称.

#Include <Date.au3>
_DateToMonth($iMonth [, $ishort = 0])

参数

$iMonth 月份数 (1 = January = 一月, 12 = December = 十二月).
$ishort [可选参数] 0 - 月份的完整名称.
1 - 月份的缩写名称.

返回值

成功: 返回指定月份的名称.
失败: 返回空字符串""并设置 @error
@error: 0 - 没有错误.
1 - 无效月份数,只能是1到12.

注意/说明

这个函数只能返回英语名称.

相关

示例/演示


#include <Date.au3>

; 获取长名称
Local $sLongMonthName = _DateToMonth(@MON)

; 获取简称
Local $sShortMonthName = _DateToMonth(@MON, 1)

MsgBox(4096, "Month of Year", "The month is: " & $sLongMonthName & " (" & $sShortMonthName & ")")