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 addDays: Difference between revisions

From Catglobe Wiki
Cg van (talk | contribs)
No edit summary
Cg van (talk | contribs)
No edit summary
 
Line 130: Line 130:


''array a2 = DateTime_addDays(a1,n); ''  
''array a2 = DateTime_addDays(a1,n); ''  
''print(a2);''


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

Latest revision as of 04:01, 21 December 2011



DateTime_addDays

Add days to a datetime

Syntax

DateTime_addDays(date , numberOfDays);

Arguments

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

Return value

array which is the datetime after adding

Index

Data type

Value

DateTime_Year

number

Value after the calculation

DateTime_Month

number

Value after the calculation

DateTime_Day

number

Value after the calculation

DateTime_Hour

number

Value after the calculation

DateTime_Minute

number

Value after the calculation

DateTime_Second

number

Value after the calculation

DateTime_Millisecond

number

Value after the calculation

DateTime_Week

number

Value after the calculation

DateTime_TimeZone

number

Value of input date time object array


Example

number n = 4;

array a1 = {2009,6,11,0,0,0,0,33,40}; //getCurrentDateTime();

array a2 = DateTime_addDays(a1,n);

print(a2);

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

Availability

Version 5.7