Difference between revisions of "DateTime addYears"
Line 19: | Line 19: | ||
array which is the datetime after adding | array which is the datetime after adding | ||
+ | |||
+ | {| class="tableintopic" style="border-collapse: collapse; border: 1px solid #010101" width="876" border="1" cellpadding="2" | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" bgcolor="#C0C0C0" | | ||
+ | '''Index''' | ||
+ | | style="border: 1px solid #010101" width="120" bgcolor="#C0C0C0" | | ||
+ | '''Data type''' | ||
+ | | style="border: 1px solid #010101" width="558" bgcolor="#C0C0C0" | | ||
+ | '''Value''' | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_Year | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value after the calculation | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_Month | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value after the calculation | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_Day | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value after the calculation | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_Hour | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value after the calculation | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_Minute | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value after the calculation | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_Second | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value after the calculation | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_Millisecond | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value after the calculation | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_Week | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value after the calculation | ||
+ | |- align="left" valign="top" | ||
+ | | style="border: 1px solid #010101" width="198" | | ||
+ | DateTime_TimeZone | ||
+ | | style="border: 1px solid #010101" width="120" | | ||
+ | number | ||
+ | | style="border: 1px solid #010101" width="558" | | ||
+ | Value of input date time object array | ||
+ | |} | ||
'''Example''' | '''Example''' | ||
− | number n = 4; | + | ''number n = 4;'' |
+ | |||
+ | ''array a1 = {2005,6,15,0,0,0,0,33,40}; //[http://wiki.catglobe.com/index.php?title=GetCurrentDateTime getCurrentDateTime();]'' | ||
− | array a1 | + | ''array a2 = DateTime_addYears(a1,n);'' |
− | + | ''print(a2);'' | |
− | + | ''// a2 ={2009,6,15,0,0,0,0,25,40} '' | |
− | + | '''Availability''' | |
Version 5.7 | Version 5.7 | ||
__NOTOC__ | __NOTOC__ | ||
<!-- imported from file: 7526.htm--> | <!-- imported from file: 7526.htm--> |
Latest revision as of 04:59, 21 December 2011
DateTime_addYears
Add years to a datetime
Syntax
DateTime_addYears(date , numberOfYears);
Arguments
- date: is an array which is the original date time
- numberOfYears: 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 = {2005,6,15,0,0,0,0,33,40}; //getCurrentDateTime();
array a2 = DateTime_addYears(a1,n);
print(a2);
// a2 ={2009,6,15,0,0,0,0,25,40}
Availability
Version 5.7