从一个包含主机名和路径等的数组创建一个URL地址.
#Include <WinHttp.au3>
_WinHttpCreateUrl($aURLArray)
$aURLArray | URL 数据数组. |
成功: | 返回创建的URL |
失败: | 返回空字符串并设置 @error: |
1 - 无效输入. | |
2 - 初始化 DllCall 失败 | |
3 - 主要 DllCall 失败 |
#AutoIt3Wrapper_AU3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include "WinHttp.au3"
Opt("MustDeclareVars", 1)
; Creating URL out of array of components:
Global $aURL[8] = ["http", 1, "www.autoitscript.com", 80, "Jon", "deadPiXels", "admin.php"]
MsgBox(0, "Created URL", _WinHttpCreateUrl($aURL))