int TimeHour(datetime time)
Returns the hour 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 h=TimeHour(TimeCurrent());
|