date_get_hour_of_year(date);
Argument | Description |
---|---|
date | The datetime to check. |
Returns: Real
This function returns the hour of the given datetime value
within the year (from the total number of hours for the year,
taking into account leap years).
myhouryear = date_get_hour_of_year(date_current_datetime());
This would set "myhouryear" to the current hour of the year.