int TimeYear(datetime time)
Returns year for the specified date. The returned value can be within the
range of 1970 to 2037.
指定された日付の年を返します。戻り値は、1970から2037年の範囲内になります。
Parameters:
パラメータ:
| time |
- |
Datetime is the number of seconds elapsed since midnight (00:00:00), January 1, 1970. 1970年1月1日真夜中(00:00:00)からの経過秒の Datetime 数値。 |
|
Sample:
サンプル:
int y=TimeYear(TimeCurrent());
|