Difference between revisions of "DateTime addMinutes"
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:General_Functions]] | [[Category:General_Functions]] | ||
− | | + | {{HelpFiles}} |
+ | |||
====DateTime_addMinutes==== | ====DateTime_addMinutes==== | ||
Line 90: | Line 91: | ||
| style="border: 1px solid #010101" width="558" | | | style="border: 1px solid #010101" width="558" | | ||
Value of input date time object array | Value of input date time object array | ||
+ | |} | ||
'''Example''' | '''Example''' | ||
− | number n = 4; | + | ''number n = 4;'' |
+ | |||
+ | ''array a1 = {2009,6,15,0,0,0,0,33,40}; //[http://wiki.catglobe.com/index.php?title=GetCurrentDateTime getCurrentDateTime();]'' | ||
− | array a1 | + | ''array a2 = DateTime_addMinutes(a1,n);'' |
− | + | ''print(a2);'' | |
− | // a2 = {2009,6,15,0,4,0,0,25,40} | + | ''// a2 = {2009,6,15,0,4,0,0,25,40} '' |
'''Availability''' | '''Availability''' |
Latest revision as of 05:08, 21 December 2011
DateTime_addMinutes
Add minutes to a datetime
Syntax
DateTime_addMinutes(date , numberOfMinutes);
Arguments
- date: is an array which is the original date time
- numberOfMinutes: 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_addMinutes(a1,n);
print(a2);
// a2 = {2009,6,15,0,4,0,0,25,40}
Availability
Version 5.7