在PHP中,switch语句中的case后可以跟表达式,但是需要注意的是,在case后面的表达式必须返回一个常量值,不能是变量或函数调用等动态值。示例如下:
$num = 2; switch ($num) { case 1 + 1: echo "The number is 2"; break; case 3 - 1: echo "The number is 2"; break; default: echo "The number is not 2"; }
在上面的示例中,case后面的表达式1+1和3-1都会被计算为常量值2,因此会执行对应的case语句块。