case 的 value 属性可以支持多个条件的同时判断,使用 | 符号进行分割:
<switch name="_GET.type"> <case value="gif|png|jpeg">图像格式文件</case> <default />其他格式文件 </switch>
0