date_compare_date

Returns which of two dates is the latest.

Syntax:

date_compare_date( date1, date2 );


Argument Description
date1 The first date.
date2 The date to compare it to.


Returns: Real


Description

With this function you can check two dates to see which one is the earlier or later than the other. The function returns -1 if date1 is earlier, 0 if both dates are the same, and 1 if date1 is later.


Example:

d = date_compare_date(date_create_datetime(2011, 9, 15, 11, 4, 0), date_current_datetime());

This would set "d" to the corresponding value depending on which of the dates was the earliest, likely 1 since the current date would be further ahead than 15th September 2011.


Back: Date And Time
Next: date_compare_datetime
© Copyright YoYo Games Ltd. 2018 All Rights Reserved