PHP 编码规范(16)

作者:未知 来源:未知 添加时间:2006年7月2日 字体:

6.8 switch语句 
一个switch语句应该具有如下格式:

switch (condition) {
  case ABC: 
  /* falls through */
    statements;

  case DEF:
   statements;
   break;

  case XYZ:
    statements;
    break;

  default:
    statements;
    break;
}

每当一个case顺着往下执行时(因为没有break语句),通常应在break语句的位置添加注释。上面的示例代码中就包含注释/* falls through */。

ppdesk