企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## *else* (PHP 4, PHP 5, PHP 7) 经常需要在满足某个条件时执行一条语句,而在不满足该条件时执行其它语句,这正是 *else* 的功能。*else* 延伸了 *if* 语句,可以在 *if* 语句中的表达式的值为 **`FALSE**` 时执行语句。例如以下代码在 $a 大于 $b 时显示 a is bigger than b,反之则显示 a is NOT bigger than b: ``` <?php if ($a > $b) {   echo "a is greater than b"; } else {   echo "a is NOT greater than b"; } ?> ``` *else* 语句仅在 *if* 以及 *elseif*(如果有的话)语句中的表达式的值为 **`FALSE**` 时执行(参见 [elseif](http://php.net/manual/zh/control-structures.elseif.php))。