目录

PHP elseif 关键字

❮ PHP 关键字

示例

如果不满足第一个条件,则测试第二个条件:

<?php
if(5 < 3) {
  echo "Five is less than three";
} else if(5 > 4) {
  echo "Five is greater than four";
}
?>
亲自试一试 »

定义和用法

这个elseif如果前一个条件成立,则关键字测试新条件if或者elseif声明没有得到满足。它相当于放置一个ifelse 块内的语句。

以下代码块是等效的:

<?php
if (...) {
some code here
} elseif (...) {
some code here
}
?>
<?php
if (...) {
  some code here
} else{
  if (...) {
    some code here
  }
}
?>

相关页面

这个if关键字。

阅读有关 if...elseif...else 条件的更多信息PHP if else 教程


❮ PHP 关键字