Php/keyword endif

来自菜鸟教程
跳转至:导航、​搜索

PHP endif关键字

Keywords PHP关键字

结束 if 有条件的:

  <?php
$a = 4;
if($a < 5):
  echo "Less than five";
endif;
?>

定义和用法

The endif 关键字用于标记 if 有条件的 if(...): 句法。它也适用于 if 有条件的,例如 if...elseif and if...else .

相关页面

The if

关键词。

The else

关键词。

The elseif

关键词。

了解更多关于条件语句的信息 PHP否则教程

.

更多例子

结束 if...else 有条件的:

  <?php
$a = 4;
if($a < 5):
  echo "Less than five";
else:
  
  echo "Greater than five";
endif;
?>

结束 if...elseif...else 有条件的:

  <?php
$a = 4;
if($a < 5):
  echo "Less than five";

  elseif($a < 10):
  echo "More than five but less than ten";
else:
  
  echo "Greater than ten";
endif;
?>

Keywords PHP关键字