DateTime addSeconds

From Catglobe Wiki
Revision as of 11:05, 7 March 2011 by 127.0.0.1 (talk | contribs) (jrfconvert import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search



DateTime_addSeconds

Add seconds to a datetime

Syntax

DateTime_addSeconds(date , numberOfSeconds);

Arguments

  • date: is an array which is the original date time
  • numberOfSeconds: 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,15,0,0,0,0,33,40};//getCurrentDateTime();

array a2 = DateTime_addSeconds(a1,n);

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

Availability

Version 5.7