标签: php if-statement conditional-statements logical-operators
如果条件为真,我需要跳过代码的某些部分,如何在php
if ($a==0 && $b==0) { //skip this part of the code and exit loop }
答案 0 :(得分:1)
您可以使用break;退出循环。
break;
示例:
A-firewall-events