©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PHP 4, PHP 5)
elseif,和此名称暗示的一样,是
if 和 else 的组合。和
else 一样,它延伸了 if
语句,可以在原来的 if 表达式值为 FALSE
时执行不同语句。但是和 else 不一样的是,它仅在
elseif 的条件表达式值为 TRUE
时执行语句。例如以下代码将根据条件分别显示
a is bigger than b,a
equal to b 或者
a is smaller than b:
<?php
if ( $a > $b ) {
echo "a is bigger than b" ;
} elseif ( $a == $b ) {
echo "a is equal to b" ;
} else {
echo "a is smaller than b" ;
}
?>
在同一个 if 语句中可以有多个
elseif 部分,其中第一个表达式值为 TRUE
(如果有的话)的
elseif 部分将会执行。在
PHP 中,也可以写成“else
if”(两个单词),它和“elseif”(一个单词)的行为完全一样。句法分析的含义有少许区别(如果你熟悉
C 语言的话,与之行为相同),但是底线是两者会产生完全一样的行为。
elseif 的语句仅在之前的 if 和所有之前
elseif 的表达式值为 FALSE
,并且当前的
elseif 表达式值为 TRUE
时执行。
Note: 必须要注意的是 elseif 与 else if 只有在类似上例中使用花括号的情况下才认为是完全相同。如果用冒号来定义 if/elseif 条件,那就不能用两个单词的 else if,否则 PHP 会产生解析错误。
<?php
if( $a > $b ):
echo $a . " is greater than " . $b ;
else if( $a == $b ): // 将无法编译
echo "The above line causes a parse error." ;
endif;
if( $a > $b ):
echo $a . " is greater than " . $b ;
elseif( $a == $b ): // 注意使用了一个单词的 elseif
echo $a . " equals " . $b ;
else:
echo $a . " is neither greater than or equal to " . $b ;
endif;
?>
[#1] Abhijit [2015-03-20 11:07:46]
$currentday="Monday";
if($currentday=="Sunday"){echo "Sunday is Fun day.";}
elseif($currentday=="Saturday"){echo "Great! No work for Two days.";}
else{echo "Work hard so that you could see the Weekend.";}
[#2] qualitycoder [2014-10-03 14:39:21]
The reason 'else if' (with a space) works with traditional syntax and not colon syntax is because of a technicality.
<?php
if($var == 'Whatever') {
} else if($var == 'Something Else') {
}
?>
In this instance, the 'else if' is a shorthand/inline else statement (no curly braces) with the if statement as a body. It is the same things as:
<?php
if($var == 'Whatever') {
} else {
if($var == 'Something Else') {
}
}
?>
If you were to write this with colon syntax, it would be:
<?php
if($var == 'Whatever'):
else:
if($var == 'Something Else'):
endif;
endif;
?>
[#3] peter dot mlich at volny dot cz [2014-03-27 10:10:59]
To Rudi / 3 years ago
Try switch in switch($name) case 'word': break; . --- slow
Try if/else and if/elseif in $name='word'. --- in my fast test, place 3
Try isset in isset($array[$name]). --- place 1
Try in_array in in_array($name,$array). --- slow
Try array_key_exists in array_key_exists($name,$array).
Try return (end function) in if/elseif with -- place 2
if('word'==$name) {
$parsed[$name]=$text;
return;
}
elseif('word'==$name) {
$parsed[$name]=$text;
return;
}
PHP 5.35, xml_parse function, i parsed 9.2MB xml file to sql, script in place 1 do it at 11.54s (do more than only condition)
[#4] [2007-01-31 14:54:42]
There is no good way to interpret the dangling else. One must pick a way and apply rules based on that.
Since there is no endif before an else, there is no easy way for PHP to know what you mean.
[#5] Vladimir Kornea [2006-12-27 09:59:47]
The parser doesn't handle mixing alternative if syntaxes as reasonably as possible.
The following is illegal (as it should be):
<?php
if($a):
echo $a;
else {
echo $c;
}
?>
This is also illegal (as it should be):
<?php
if($a) {
echo $a;
}
else:
echo $c;
endif;
?>
But since the two alternative if syntaxes are not interchangeable, it's reasonable to expect that the parser wouldn't try matching else statements using one style to if statement using the alternative style. In other words, one would expect that this would work:
<?php
if($a):
echo $a;
if($b) {
echo $b;
}
else:
echo $c;
endif;
?>
Instead of concluding that the else statement was intended to match the if($b) statement (and erroring out), the parser could match the else statement to the if($a) statement, which shares its syntax.
While it's understandable that the PHP developers don't consider this a bug, or don't consider it a bug worth their time, jsimlo was right to point out that mixing alternative if syntaxes might lead to unexpected results.