Kontrollstruktur
1. IfBedingte Beurteilung Anweisung
<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; } ?>
3. While-Schleife-Anweisung
<?php $a = 10; while ( $a > 0 ) { echo $a --; echo '<br>'; } ?>
4. Führen Sie eine While-Schleifen-Anweisung aus
<?php $a = 10; do { echo $a --; echo '<br/>'; } while ( $a > 0 ) ?>
For-Schleife Anweisung
<?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 '循环结束'; ?>
<?php for($a = 0; $a < 10; $a++) { echo $a; echo '<br/>'; if($a ==5) { exit;//直接退出,循环后面的语句不执行 } } echo '循环结束'; ?>
Das obige ist der detaillierte Inhalt vonCodebeispiele für PHP-Kontrollstrukturen if, switch, while, for usw.. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!