Difference between revisions of "DateTime dayOfWeek"
(jrfconvert import) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | + | {{HelpFiles}} | |
− | | ||
− | + | <br> | |
− | + | ==== DateTime_dayOfWeek ==== | |
− | + | Return day of week (Mon, Tue, Wed,...) of a datetime | |
− | + | '''Syntax''' | |
− | + | DateTime_dayOfWeek(datetime); | |
− | + | '''Arguments''' | |
− | + | *datetime: is array in which we get dayOfWeek | |
− | + | '''Return value''' | |
− | + | number in which: | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | *0: DateTime_Sunday | |
+ | *1: DateTime_Monday | ||
+ | *2: DateTime_Tuesday | ||
+ | *3: DateTime_Wednesday | ||
+ | *4: DateTime_Thursday | ||
+ | *5: DateTime_Friday | ||
+ | *6: DateTime_Saturday | ||
− | + | '''Example''' | |
− | + | ''array a1 = {2009,5,23,10,0,0,0,19,57};'' | |
− | + | ''number d = DateTime_dayOfWeek(a1);'' | |
− | '' | + | ''if (d == 0) print("Sunday");'' |
− | Version 5.7 | + | ''else if (d == 1) print("Monday");'' |
− | __NOTOC__ | + | |
− | <!-- imported from file: 7528.htm--> | + | ''else if (d == 2) print("Tuesday");'' |
+ | |||
+ | ''else if (d == 3) print("Wednesday");'' | ||
+ | |||
+ | ''else if (d == 4) print("Thursday");'' | ||
+ | |||
+ | ''else if (d == 5) print("Friday");'' | ||
+ | |||
+ | ''else if (d == 6) print("Saturday");'' | ||
+ | |||
+ | ''//Saturday'' | ||
+ | |||
+ | '''Availability''' | ||
+ | |||
+ | Version 5.7 __NOTOC__ <!-- imported from file: 7528.htm--> | ||
+ | |||
+ | [[Category:General_Functions]] |
Latest revision as of 06:05, 21 December 2011
DateTime_dayOfWeek
Return day of week (Mon, Tue, Wed,...) of a datetime
Syntax
DateTime_dayOfWeek(datetime);
Arguments
- datetime: is array in which we get dayOfWeek
Return value
number in which:
- 0: DateTime_Sunday
- 1: DateTime_Monday
- 2: DateTime_Tuesday
- 3: DateTime_Wednesday
- 4: DateTime_Thursday
- 5: DateTime_Friday
- 6: DateTime_Saturday
Example
array a1 = {2009,5,23,10,0,0,0,19,57};
number d = DateTime_dayOfWeek(a1);
if (d == 0) print("Sunday");
else if (d == 1) print("Monday");
else if (d == 2) print("Tuesday");
else if (d == 3) print("Wednesday");
else if (d == 4) print("Thursday");
else if (d == 5) print("Friday");
else if (d == 6) print("Saturday");
//Saturday
Availability
Version 5.7