【已解决】for循环中用if...else语句不能正确写日志的问题
本帖最后由 cynthia59 于 2013-6-6 09:44 编辑每次只有第一次循环会写日志,怎么回事?$file = FileOpen('C:\对比日志.log', 1+8)
For $i = 0 To 1
$text = $i
If $text = 0 Then
FileWriteLine($file, $text &'----相同!')
Else
FileWriteLine($file, $text &'----不同!')
EndIf
FileClose($file)
Next 把FileClose这句放在for循环外面。 额,这种低级bug都出来了。。。。谢谢指导!
页:
[1]