Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

DateTime compare

From Catglobe Wiki
Revision as of 08:47, 7 March 2011 by Catglobe (talk | contribs) (jrfconvert import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



DateTime_compare

Compare 2 datetimes

Syntax

DateTime_compare(date1, date1);

Arguments

  • date1, date2 are arrays which are datetimes to be compared

Return value

number in which:

  • - 1: DateTime_Comparison_Less
  • 0 : DateTime_Comparison_Equal
  • 1: DateTime_Comparison_Greater

Example

array a1 = DateTime_getByYMD(1985,12,24);

array a2 = getCurrentDateTime();

bool result = DateTime_compare(a1, a2);

Availability

Version 5.7