BIS fnc showTime: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1 revision)
(Page filling)
Line 1: Line 1:
{{Function|= Comments
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________
Line 8: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| Shows time gap between two dates. |= Description
File: showTime.sqf
____________________________________________________________________________________________
 
Description:
Shows time gap between two dates
 
Parameter(s):
_this select 0: Starting date
_this select 1: Ending date


*/
| [startDate, endDate] call [[BIS_fnc_showTime]] |= Syntax
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_showTime]]; --> |= Syntax
|p1= startDate: [[Array]] in [[date]] format |= Parameter 1


|p1= |= Parameter 1
|p2= endDate: [[Array]] in [[date]] format |= Parameter 2


| |= Return value
| Resource Layer |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
|x1= <code>_dayStart = [[date]];
_dayStart set [3, 0]; {{codecomment|// set hours to 0}}
_dayStart set [4, 0]; {{codecomment|// set minutes to 0}}
_now = [[date]];
[_dayStart, _now] [[call]] [[BIS_fnc_showTime]];</code> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[date]], [[BIS_fnc_secondsToString]] |= See also
 
}}
}}



Revision as of 01:08, 27 April 2018

Hover & click on the images for description

Description

Description:
Shows time gap between two dates.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[startDate, endDate] call BIS_fnc_showTime
Parameters:
startDate: Array in date format
endDate: Array in date format
Return Value:
Resource Layer

Examples

Example 1:
_dayStart = date; _dayStart set [3, 0]; // set hours to 0 _dayStart set [4, 0]; // set minutes to 0 _now = date; [_dayStart, _now] call BIS_fnc_showTime;

Additional Information

See also:
dateBIS_fnc_secondsToString

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section