猿问

PHP中else if还是elseif?

PHP中else if还是elseif?


慕仙森
浏览 1135回答 4
4回答

song100e

else if 是相当于 else 和 if 的嵌套,请参考《PHP7内核剖析》334页<?php if(condition1){     statment1; }else if(condition2){     statment2; } ?>相当于<?php if(condition1){     statment1; }else{     if(condition2){         statment2;     } } ?>

温温酱

PHP中既有else if又有elseif,详细用法如下:elseif,和此名称暗示的一样,是 &nbsp; if 和 else 的组合。和 &nbsp; else 一样,它延伸了 if &nbsp; 语句,可以在原来的 if 表达式值为 FALSE &nbsp; 时执行不同语句。但是和 else 不一样的是,它仅在 &nbsp; elseif 的条件表达式值为 TRUE &nbsp; 时执行语句。例如以下代码将根据条件分别显示a is bigger than b,a &nbsp;equal to b 或者a is smaller than b:&nbsp;1234567if&nbsp;($a&nbsp;>&nbsp;$b)&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;"a&nbsp;is&nbsp;bigger&nbsp;than&nbsp;b";}&nbsp;elseif&nbsp;($a&nbsp;==&nbsp;$b)&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;"a&nbsp;is&nbsp;equal&nbsp;to&nbsp;b";}&nbsp;else&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;"a&nbsp;is&nbsp;smaller&nbsp;than&nbsp;b";}在同一个 if 语句中可以有多个 &nbsp; elseif 部分,其中第一个表达式值为 TRUE(如果有的话)的 &nbsp; elseif 部分将会执行。在 &nbsp; PHP 中,也可以写成"else &nbsp;if"(两个单词),它和"elseif"(一个单词)的行为完全一样。句法分析的含义有少许区别,但是底线是两者会产生完全一样的行为。 &nbsp;elseif 的语句仅在之前的 if 和所有之前 &nbsp; elseif 的表达式值为 FALSE,并且当前的 &nbsp; elseif 表达式值为 TRUE 时执行。&nbsp;必须要注意的是 elseif 与 else if只有在类似上例中使用花括号的情况下才认为是完全相同。如果用冒号来定义 if/elseif 条件,那就不能用两个单词的else if,否则 PHP 会产生解析错误。 &nbsp;&nbsp;举例:12345678910111213141516/*&nbsp;不正确的使用方法:&nbsp;*/if($a&nbsp;>&nbsp;$b):&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;$a."&nbsp;is&nbsp;greater&nbsp;than&nbsp;".$b;else&nbsp;if($a&nbsp;==&nbsp;$b):&nbsp;//&nbsp;将无法编译&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;"The&nbsp;above&nbsp;line&nbsp;causes&nbsp;a&nbsp;parse&nbsp;error.";endif;&nbsp;&nbsp;/*&nbsp;正确的使用方法:&nbsp;*/if($a&nbsp;>&nbsp;$b):&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;$a."&nbsp;is&nbsp;greater&nbsp;than&nbsp;".$b;elseif($a&nbsp;==&nbsp;$b):&nbsp;//&nbsp;注意使用了一个单词的&nbsp;elseif&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;$a."&nbsp;equals&nbsp;".$b;else:&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;$a."&nbsp;is&nbsp;neither&nbsp;greater&nbsp;than&nbsp;or&nbsp;equal&nbsp;to&nbsp;".$b;endif;&nbsp;

慕尼黑5688855

PHP中else if还是elseif区别如下:elseif,和此名称暗示的一样,是 if 和 else 的组合。和 else 一样,它延伸了 if 语句,可以在原来的 if 表达式值为FALSE 时执行不同语句。但是和 else 不一样的是,它仅在 elseif 的条件表达式值为 TRUE 时执行语句。例如以下代码将根据条件分别显示 a is bigger than b,a equal to b 或者 a is smaller than b:<?phpif ($a > $b) {echo "a is bigger than b";} elseif ($a == $b) {echo "a is equal to b";} else {echo "a is smaller than b";}?>else if:<?phpif($var == 'Whatever') {} else if($var == 'Something Else') {}?>注意:必须要注意的是 elseif 与 else if 只有在类似上例中使用花括号的情况下才认为是完全相同。如果用冒号来定义 if/elseif 条件,那就不能用两个单词的 else if,否则 PHP 会产生解析错误。&nbsp;

慕少森

<?php$Type = $_GET['type'];if ( $Type == '首页' ) {?>这里写你首页的文代码<?php}else{?>这里写你其他页面的代码<?php}unset( $Type );?>
随时随地看视频慕课网APP
我要回答