Function Reference

_DateToMonth

指定された月番号に基づいて、月の名前を返します。

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

 

パラメータ

$iMon 月番号(1 = 1月、 12 = 12月)
$ishort [オプション]
0 - 完全な月の名前
1 - 月の省略名

 

返し値

Success: 与えられた月の名前を返します
Failure: 空文字列。@errorを次の値に設定します
@error: 0 - 正常終了
1 - 無効な月番号、形式です

 

注意

この関数は英語での月名のみ返します。

 

関連

 


#include <Date.au3>

; 完全な名前を取得
$sLong月Name = _DateToMonth(@MON)

; 省略名を取得
$sShortMonthName = _DateToMonth(@MON, 1)

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