Structure de contrôle
1. IfJugement conditionnel déclaration
<meta http-equiv="content-type" content="text/html;charset=utf-8"/> <?php $a = 10; if ($a > 0) { echo '整数大于零'; } echo '<br/>'; if ($a > 0) { echo '整数大于零'; } else if($a < 0) { echo '整数小于零'; } else { echo '整数等于零'; } ?>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/> <?php $role = 'admin'; switch ($role) { case 'admin' : echo '管理员'; break; case 'user' : echo '普通用户'; break; case 'guest' : echo '游客'; break; default : echo '游客'; break; } ?>
<?php $a = 10; while ( $a > 0 ) { echo $a --; echo '<br>'; } ?>
5. Pour la boucle
<?php $a = 10; do { echo $a --; echo '<br/>'; } while ( $a > 0 ) ?>
<?php for($a = 0; $a < 10; $a++) { echo $a; echo '<br/>'; } ?>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/> <?php for($a = 0; $a < 10; $a++) { echo $a; echo '<br/>'; if($a ==5) { break;//终止循环,但执行循环后面的语句 } } echo '循环结束'; ?>
Continuer
Déclaration<?php for($a = 0; $a < 10; $a++) { echo $a; echo '<br/>'; if($a ==5) { exit;//直接退出,循环后面的语句不执行 } } echo '循环结束'; ?>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!