Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

DateTime daysBetween: Difference between revisions

From Catglobe Wiki
Cg_pham (talk | contribs)
No edit summary
Tungocman (talk | contribs)
No edit summary
Line 1: Line 1:
[[Category:General_Functions]]
[[Category:General_Functions]]
{{HelpFiles}}
{{HelpFiles}}
 
__NOTOC__
 
==DateTime_daysBetween==
====DateTime_daysBetween====


Return days between 2 datetimes
Return days between 2 datetimes
Line 26: Line 25:
'''Example'''
'''Example'''


array a1 = {2009,5,4,10,10,10,10,19,57};
array a1 = {2015,10,22,3,2,9,418,43,0};
 
array a2 = {2015,10,28,3,2,9,418,43,0};
array a2 = {2009,5,7,12,12,12,10,23,57};
 
number timezoneid = 40;
number timezoneid = 40;
print(DateTime_daysBetween(a1,a2,timezoneid));
print(DateTime_daysBetween(a1,a2,timezoneid));
 
// result = 6
// result =3
 
'''Availability'''
 
Version 5.7
__NOTOC__
<!-- imported from file: 7529.htm-->

Revision as of 03:05, 22 October 2015



DateTime_daysBetween

Return days between 2 datetimes

Syntax

DateTime_daysBetween(datetime1, datetime2, timezoneId)

or

DateTime_daysBetween(datetime1, datetime2)

Arguments

  • datetime1, datetime2: are array in which we get day span
  • timezoneId: is number. It is timezone Id

Return value

number

Example

array a1 = {2015,10,22,3,2,9,418,43,0}; array a2 = {2015,10,28,3,2,9,418,43,0}; number timezoneid = 40; print(DateTime_daysBetween(a1,a2,timezoneid)); // result = 6