Switch multiple case statement

前端 未结 3 1731
醉酒成梦
醉酒成梦 2021-02-04 23:13

Can someone suggest me how can I replace the below code?

How do I rewrite the code in order to avoid the repetition of the block case 3:{code block A; break;}

3条回答
  •  生来不讨喜
    2021-02-04 23:48

    This format is shown in the PHP docs:

    switch (i) {
        case 1:
        case 3:
            code block A;
            break;
        case 2:
            code block B;
            break;
        default:
            code block default;
            break;
    }
    

提交回复
热议问题