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.

DateTime subtractDays: Difference between revisions

From Catglobe Wiki
Cg_pham (talk | contribs)
No edit summary
Cg_pham (talk | contribs)
No edit summary
Line 1: Line 1:
[[Category:General_Functions]]
[[Category:General_Functions]]

{{HelpFiles}}


====DateTime_subtractDays====
====DateTime_subtractDays====

Revision as of 08:29, 12 December 2011


DateTime_subtractDays

Return datetime after subtracting days

Syntax

DateTime_subtractDays(datetime,n)

Arguments

  • datetime: is array which is datetime to be subtracted
  • n: is number which is the number of days to be subtracted

Return value

array, in which there are 9 items:

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,19,0,0,0,0,33,40};

array a2 = DateTime_subtractDays(a1,n);

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

Availability

Version 5.7