date_get_minute_of_year

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).

 

Syntax:

date_get_minute_of_year(date);

Argument Description
date The date to check.

 

Returns:

Real

 

Example:

myminuteyear = date_get_minute_of_year(date_current_datetime());

This would set myminuteyear to the current minute of the year.