将时间间隔转换为字符串
#Include <WinAPIEx.au3>
_WinAPI_StrFromTimeInterval ( $iTime [, $iDigits] )
| $iTime | 毫秒时间间隔 |
| $iDigits | [可选参数] 由字符串代替的重要的数位的最大值 |
| 成功: | 返回转换后的字符串 |
| 失败: | 返回空字符串并设置@error非0 |
在MSDN中搜索
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
ConsoleWrite(_WinAPI_StrFromTimeInterval(_WinAPI_GetTickCount()) & @CR)