ping 的IP地址是空的,为什么返回值也是成功的
Example()Func Example()
; Ping AutoIt 网站,超时时间为 250 毫秒.
Local $iPing = Ping("", 250)
If $iPing Then ; If a value greater than 0 was returned then display the following message.
MsgBox(4096, "", "收发时间间隔: " & $iPing & "毫秒.")
Else
MsgBox(4096, "", "发生了一个错误, @error 值为: " & @error)
EndIf
EndFunc ;==>Example 在命令行ping 空时,返回帮助文档。没有error IP地址/主机名 是必选参数的吧……。第二个才是可选参数,
究竟为什么还是返回1MS,我也不懂……。谁能解释一下AU3里PING的原型是什么的呢? 回复 3# boyhong
原来这个脚本在win7系统下运行就会出现这个问题,在xp系统下就没有问题。。
页:
[1]