标签: php
如果我有3个If条件(A,B和C),我想声明所有可能性,我这样写:
if (A && B && C) { do this; } elseif (A && B) { do this; } elseif (B && C) { do this; }
现在如果我有3个,6个条件怎么办?我应该对36 if / elseif语句吗?还是有一种简短/聪明的方式来写它?
谢谢!