Difference between revisions of "DateTime subtractMinutes"

From Catglobe Wiki
Jump to: navigation, search
 
Line 18: Line 18:
 
array, in which there are 9 items:  
 
array, in which there are 9 items:  
  
{| width="876" cellpadding="2" border="1" class="tableintopic" style="border-collapse: collapse; border: 1px solid rgb(1, 1, 1);"
+
{| width="876" cellpadding="2" border="1" style="border-collapse: collapse; border: 1px solid rgb(1, 1, 1);" class="tableintopic"
 
|- valign="top" align="left"
 
|- valign="top" align="left"
 
| width="198" bgcolor="#c0c0c0" style="border: 1px solid rgb(1, 1, 1);" |  
 
| width="198" bgcolor="#c0c0c0" style="border: 1px solid rgb(1, 1, 1);" |  
Line 125: Line 125:
 
''number n = 4; ''  
 
''number n = 4; ''  
  
''array a1 = {2009,6,15,0,4,0,0,25,40}; //getCurrentDateTime(); ''  
+
''array a1 = {2009,6,15,0,4,0,0,25,40}; //[http://wiki.catglobe.com/index.php?title=GetCurrentDateTime getCurrentDateTime();] ''
  
 
''array a2 = DateTime_subtractMinutes(a1,n); ''  
 
''array a2 = DateTime_subtractMinutes(a1,n); ''  

Latest revision as of 11:57, 21 December 2011



DateTime_subtractMinutes

Return datetime after subtracting minutes

Syntax

DateTime_subtractMinutes(datetime,n)

Arguments

  • datetime: is array which is datetime to be subtracted
  • n: is number which is the number of minutes 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,15,0,4,0,0,25,40}; //getCurrentDateTime();

array a2 = DateTime_subtractMinutes(a1,n);

print(a2);

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

Availability

Version 5.7