转换 HTTP 时间/日期字符串化为一个数组(SYSTEMTIME数据结构).
#Include <WinHttp.au3>
_WinHttpTimeToSystemTime($sHttpTime)
$sHttpTime | 要转换的日期/时间字符串. |
成功: | 返回包含下方8个元素的数组: |
$array[0] - 年, | |
$array[1] - 月, | |
$array[2] - 周内的日, | |
$array[3] - 日, | |
$array[4] - 时, | |
$array[5] - 分, | |
$array[6] - 秒, | |
$array[7] - 毫秒. | |
失败: | 返回 0 并设置 @error: |
1 - DllCall 失败 |
#AutoIt3Wrapper_AU3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include "WinHttp.au3"
#include <Array.au3>
Opt("MustDeclareVars", 1)
; 时间
Global $aTime = _WinHttpTimeToSystemTime("Sat, 21 Aug 2010 22:04:43 GMT")
_ArrayDisplay($aTime, "_WinHttpTimeToSystemTime()")