-
[PHP] 10. 조건문 (switch) - PHP 강좌, PHP5Web/PHP 2015. 6. 13. 13:43
PHP 5 switch Statement
switch문은 다른 조건에 따른 다른 액션을 수행하기 위해 사용됩니다.
1. The PHP switch Statement
switch문을 사용하여 다른 종류의 코드 블럭을 실행 할 수 있습니다.
문법:
switch (n) {
case label1:
code to be executed if n=label1;
break;
case label2:
code to be executed if n=label2;
break;
case label3:
code to be executed if n=label3;
break;
...
default:
code to be executed if n is different from all labels;
}처음으로 단일 식 n을 통해 값을 비교합니다.
식의 값은 switch 문의 구조의 각 case와 비교를 합니다.
매치가 되는 case가 있다면, 그 블록의 코드를 실행합니다.
break를 사용하여 다음 case를 실행하는 것을 방지합니다.
default 문은 어떠한 조건에도 일치하지 않으면 이 구문을 실행합니다.
예제:
123456789101112131415161718192021222324<!DOCTYPE html><html><body><?php$favcolor = "red";switch ($favcolor) {case "red":echo "Your favorite color is red!";break;case "blue":echo "Your favorite color is blue!";break;case "green":echo "Your favorite color is green!";break;default:echo "Your favorite color is neither red, blue, or green!";}?></body></html>cs * 이 강좌는 'w3schools'를 참조하여 작성하였습니다.
'Web > PHP' 카테고리의 다른 글
[PHP] 13.함수 (functions) - PHP 강좌, PHP5 (0) 2015.06.13 [PHP] 12. 반복문 (for loop) - PHP 강좌, PHP5 (0) 2015.06.13 [PHP] 11. 반복문 (while loop) - PHP 강좌, PHP5 (0) 2015.06.13 [PHP] 9. 조건문 (if, else, elseif) - PHP 강좌, PHP5 (0) 2015.06.13 [PHP] 8. 연산자 (Operators) - PHP 강좌, PHP5 (0) 2015.06.13 [PHP] 7. 상수 (Constants) - PHP 강좌, PHP5 (0) 2015.06.13