在for循环中使用条件运算

时间:2016-06-27 16:55:03

标签: php if-statement conditional-statements logical-operators

如果条件为真,我需要跳过代码的某些部分,如何在php

中执行
   if ($a==0 && $b==0)
     {

//skip this part of the code and exit loop 
        }

1 个答案:

答案 0 :(得分:1)

您可以使用break;退出循环。

示例:

A-firewall-events