int TimeMinute(datetime time)
Returns the minute for the specified time.
指定された時刻の分を返します。
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 m=TimeMinute(TimeCurrent());
|