[关闭]
@Chiang 2020-01-13T14:25:23.000000Z 字数 275 阅读 524

else

PHP-流程控制


经常需要在满足某个条件时执行一条语句,而在不满足该条件时执行其它语句,这正是 else 的功能。else 延伸了 if 语句,可以在 if 语句中的表达式的值为 FALSE 时执行语句。例如以下代码在 $a 大于 $b 时显示 a is bigger than b,反之则显示 a is NOT bigger than b:

  1. <?php
  2. if ($a > $b) {
  3. echo "a is greater than b";
  4. } else {
  5. echo "a is NOT greater than b";
  6. }
  7. ?>

else 语句仅在 if 以及 elseif(如果有的话)语句中的表达式的值为 FALSE 时执行(参见 elseif)。

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注