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条)

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题