PHP endif 关键字
定义和用法
endif
关键字用于标记以 if(...):
语法。 它也适用于 if
条件的任何变体,例如 if...elseif
和 如果...否则
.
相关页面
if 关键字。
else 关键字。
elseif 关键字。
在我们的 PHP if else 教程中了解有关条件语句的更多信息。
更多实例
实例
结束一个 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;
?>
亲自试一试 »