6.8 switch statement
A switch statement should have the following format:
switch (condition) {
case ABC:
/* falls through */
statements;
case DEF :
Statements;
break;
case XYZ:
statements;
break;
default:
statements; Note. The above example code contains the comment /* falls through */.
http://www.bkjia.com/PHPjc/532588.html
www.bkjia.com
truehttp: //www.bkjia.com/PHPjc/532588.htmlTechArticle6.8 switch statement A switch statement should have the following format: switch (condition) { case ABC: /* falls through * / statements; case DEF: statements; break; case XYZ: statements; bre...
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn