douqiao5552 2016-02-23 03:05
浏览 302
已采纳

如何在php中结束if语句

The question is pretty much self-explanatory, I am having trouble how to end if statement in php.

For example,

<?php
if (argument) {
// end if statement
}
else if (different argument) {
// end if statement
}
else if (another different argument) {
// end if statement
}
else {
// do something
}
?>
  • 写回答

3条回答 默认 最新

  • dqzpt40064 2016-02-23 04:21
    关注

    Consider carefully how an if condition works:

    If (boolean condition) Then
        (consequent)
    Else
        (alternative)
    End If
    

    When an interpreter finds an If, it expects a boolean condition ... and evaluates that condition. If the condition is true, the statements following the then are executed. Otherwise, the execution continues ... After either branch has been executed, control returns to the point after the end If.

    The if statement will end if none of its conditions evaluate to true or if one of its conditions evaluate to true. The statement(s) associated with the first true condition will evaluate, and the if statement will end.

    See Wikipedia's If–then(–else) for more.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?