cynthia59 发表于 2013-6-6 09:36:25

【已解决】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

pusofalse 发表于 2013-6-6 09:40:47

把FileClose这句放在for循环外面。

cynthia59 发表于 2013-6-6 09:43:22

额,这种低级bug都出来了。。。。谢谢指导!
页: [1]
查看完整版本: 【已解决】for循环中用if...else语句不能正确写日志的问题