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