Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 08:25, 12 December 2011 by Cg_pham (talk | contribs)




DateTime_addYears

Add years to a datetime

Syntax

DateTime_addYears(date , numberOfYears);

Arguments

  • date: is an array which is the original date time
  • numberOfYears: is a number type

Return value

array which is the datetime after adding

Example

number n = 4;

array a1 = {2005,6,15,0,0,0,0,33,40}; //getCurrentDateTime();

array a2 = DateTime_addYears(a1,n);

print(a2);

// a2 ={2009,6,15,0,0,0,0,25,40} Availability

Version 5.7